[Snyk] Security upgrade @actions/cache from 3.1.2 to 3.2.1 #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: example-node-versions | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
# ~~~~~~~~~~~~~~~~~~ Cypress v9 and below (using Legacy configuration) ~~~~~~~~~~~~~~~~~~~ # | |
cypress-run-v9: | |
runs-on: ubuntu-22.04 | |
# let's make sure Cypress works on several versions of Node | |
strategy: | |
matrix: | |
node: [14, 16, 18] | |
name: Cypress v9 E2E on Node v${{ matrix.node }} | |
steps: | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: node -v | |
- run: npm -v | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# Hmm, should we rebuild the "dist" before using the action? | |
- uses: ./ | |
with: | |
working-directory: examples/v9/node-versions | |
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Cypress v10 and higher ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # | |
cypress-run: | |
runs-on: ubuntu-22.04 | |
# let's make sure Cypress works on several versions of Node | |
strategy: | |
matrix: | |
node: [14, 16, 18] | |
name: Cypress E2E on Node v${{ matrix.node }} | |
steps: | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: node -v | |
- run: npm -v | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# Hmm, should we rebuild the "dist" before using the action? | |
- uses: ./ | |
with: | |
working-directory: examples/node-versions |