77 lines
1.6 KiB
YAML
77 lines
1.6 KiB
YAML
name: build-test-web
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
check-format:
|
|
runs-on: 'ubuntu-22.04'
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
cache: 'yarn'
|
|
- run: yarn install
|
|
- run: yarn fmt-check
|
|
|
|
check-types:
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
cache: 'yarn'
|
|
- run: yarn install
|
|
- uses: Swatinem/rust-cache@v2
|
|
with:
|
|
workspaces: './src/wasm-lib'
|
|
|
|
- run: yarn build:wasm
|
|
- run: yarn xstate:typegen
|
|
- run: yarn tsc
|
|
|
|
|
|
check-typos:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
- name: Install codespell
|
|
run: |
|
|
python -m pip install codespell
|
|
- name: Run codespell
|
|
run: codespell --config .codespellrc # Edit this file to tweak the typo list and other configuration.
|
|
|
|
|
|
build-test-web:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
cache: 'yarn'
|
|
|
|
- run: yarn install
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
with:
|
|
workspaces: './src/wasm-lib'
|
|
|
|
- run: yarn build:wasm
|
|
|
|
- run: yarn simpleserver:ci
|
|
|
|
- run: yarn test:nowatch
|