summaryrefslogtreecommitdiff
path: root/.github/workflows/check.yml
blob: e66b828d14463e133e20e98ed5508554eeeb101b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
on: [push, pull_request]
permissions:
  contents: read
jobs:
  check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with:
          node-version: "22"
      - run: npm ci --include=dev
      - run: npx prettier . --check