Skip to content

Commit

Permalink
Restore strategy, remove branches "v*"
Browse files Browse the repository at this point in the history
Signed-off-by: Scott J Dickerson <[email protected]>
  • Loading branch information
sjd78 committed Dec 14, 2023
1 parent 14a59fd commit de813c1
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,27 @@ on:
push:
branches:
- main
- "v[0-9]+.[0-9]+.[0-9]+"
- "release-*"
pull_request:
branches:
- main
- "v[0-9]+.[0-9]+.[0-9]+"
- "release-*"

jobs:
unit-test:
runs-on: ubuntu-latest
strategy:
matrix:
# Note: This should match the node version(s) used in the base Dockerfile
node-version: [18.x]

steps:
- uses: actions/checkout@v4

# Note: This should match the node version used in the base Dockerfile
- name: Use Node.js 18.x
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: ${{ matrix.node-version }}

- name: Verify package-lock.json
run: ./scripts/verify_lock.mjs
Expand Down

0 comments on commit de813c1

Please sign in to comment.