Skip to content

3.0.1

3.0.1 #48

Workflow file for this run

# 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