Skip to content

Tune Node and ESM compatibility #42

Tune Node and ESM compatibility

Tune Node and ESM compatibility #42

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@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