Accept null as concurrency property #47
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
# Workflow automatically generated by gat | |
# DO NOT CHANGE THIS FILE MANUALLY | |
name: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: null | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- name: Install dependencies | |
run: npm ci | |
- name: Ensure workflows are up to date | |
run: |2- | |
npx tsx src/cli.ts build | |
git diff --exit-code .github/workflows/build.yml | |
- name: Run tests | |
run: npm test | |
- name: Check lint problems | |
run: npm run lint | |
- name: Check format problems | |
run: npm run format:check |