2.3.0 #43
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@f43a0e5ff2bd294095638e18286ca9a3d1956744 | |
- uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 | |
- name: Install dependencies | |
run: npm ci | |
- name: Ensure workflows are up to date | |
run: |2- | |
npx ts-node 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 |