Skip to content

Commit

Permalink
update github actions more
Browse files Browse the repository at this point in the history
  • Loading branch information
jacekkopecky committed Feb 18, 2024
1 parent 4c5ba14 commit 476a4e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/node-cd-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm ci --legacy-peer-deps
- run: npm run build
- run: npm test
- name: Deploy 🚀
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/node-ci-pull-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm ci --legacy-peer-deps
- run: npm run build
- run: npm test

0 comments on commit 476a4e5

Please sign in to comment.