Skip to content

Add issue triaging action (#5) #10

Add issue triaging action (#5)

Add issue triaging action (#5) #10

Workflow file for this run

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