Skip to content

Commit

Permalink
Merge branch 'Ionaru:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
mayraamaral authored Feb 17, 2025
2 parents 138c198 + c93033b commit f20ff16
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: current

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: npm audit --omit=dev

Expand All @@ -36,28 +36,28 @@ jobs:
node-version: [ '14', '16', '18' ]

steps:
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: npm ci

- name: Test
run: npm test

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
name: cypress-screenshots-nodejs-${{ matrix.node-version }}
path: cypress/screenshots
retention-days: 7

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: cypress-videos
name: cypress-videos-nodejs-${{ matrix.node-version }}
path: cypress/videos
retention-days: 7

Expand All @@ -68,11 +68,11 @@ jobs:
if: github.event_name == 'push'

steps:
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: current

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: npm ci

Expand Down

0 comments on commit f20ff16

Please sign in to comment.