Skip to content

Changes for new repository #1

Changes for new repository

Changes for new repository #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
merge_group:
jobs:
fmt-and-lint:
name: format and lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "22.x"
- run: npm ci
- run: npm run lint-fmt
- run: npm run lint-eslint
- run: npm run compile-test
- run: npm run test