Remove formating constraint on user id (#37) #66
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [22] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "npm" | |
- run: npm ci | |
- run: npm run format:check | |
- run: npm run lint | |
- run: npm run build:clean && git diff --exit-code | |
- run: npm run typecheck # typecheck depends on the `dist` directory for type-helpers.ts | |
- run: npm test |