Skip to content

Commit

Permalink
build: tweak test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mesqueeb committed May 31, 2023
1 parent 6977a30 commit 999ad4d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
name: Test
on:
push:
branches: [$default-branch]
branches: 'dev'
paths:
- src/**
- test/**
- "*.js"
- "*.ts"
- "*.json"
- '*.js'
- '*.ts'
- '*.json'
- .github/workflows/test.yml
pull_request:
branches: [$default-branch]
branches: 'dev'
paths:
- src/**
- test/**
- "*.js"
- "*.ts"
- "*.json"
- '*.js'
- '*.ts'
- '*.json'
- .github/workflows/test.yml
concurrency:
group: test-${{ github.ref }}
Expand All @@ -25,7 +25,7 @@ jobs:
test:
strategy:
matrix:
node-version: ["16", "18", "20"]
node-version: ['16', '18', '20']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 999ad4d

Please sign in to comment.