Skip to content

Commit

Permalink
Tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmorris committed Aug 26, 2024
1 parent c5b1184 commit 0139019
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,10 @@ insert_final_newline = true
charset = utf-8
trim_trailing_whitespace = true

[*.yaml]
indent_style = space
indent_size = 2

[*.md]
indent_style = space
indent_size = 4
13 changes: 10 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 16, 18, 20, 22 ]
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm test
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- uses: actions/checkout@v4
- run: npm ci
- run: npm test

0 comments on commit 0139019

Please sign in to comment.