Remove clean-all from build-all because ci does not have bash extensi… #393
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: ["*"] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# setup Bun for runtime tests | |
- uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: biome,just | |
- name: Run linter and format checker | |
run: just lint | |
- name: Install dependencies | |
run: YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn | |
- name: Create builds | |
run: YARN_ENABLE_IMMUTABLE_INSTALLS=false just build-all | |
- name: Perform type-checking | |
run: just type-check-all | |
- name: Run all tests | |
run: just test-all |