Submit repository fields with build_info
(#138)
#350
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: 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 |