Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,24 @@ on:
- main

jobs:
build:
lint:
runs-on: ubuntu-latest
name: Build and Test (Node ${{ matrix.node-version }})

name: Linting
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Linting
run: npm run lint
- name: Formatting
run: npm run format:check
test:
needs: lint
runs-on: ubuntu-latest
name: Testing (Node ${{ matrix.node-version }})
strategy:
matrix:
node-version: [16.x, 18.x, 20.x, 22.x]

node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Install Node.js
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
22.19.0
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"singleQuote": true,
"tabWidth": 2
}
Loading