Skip to content

Commit

Permalink
bump actions/setup-node, actions/checkout & rename tests for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
jaffrepaul committed Nov 30, 2022
1 parent 680cec5 commit 5cf99fc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/example-node-versions.yml
Expand Up @@ -14,17 +14,17 @@ jobs:
strategy:
matrix:
node: [14, 16, 18]
name: E2E on Node v${{ matrix.node }}
name: Cypress v9 E2E on Node v${{ matrix.node }}
steps:
- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: node -v
- run: npm -v

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

# Hmm, should we rebuild the "dist" before using the action?

Expand All @@ -40,17 +40,17 @@ jobs:
strategy:
matrix:
node: [14, 16, 18]
name: E2E on Node v${{ matrix.node }}
name: Cypress v10 E2E on Node v${{ matrix.node }}
steps:
- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: node -v
- run: npm -v

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

# Hmm, should we rebuild the "dist" before using the action?

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Expand Up @@ -13,9 +13,9 @@ jobs:
name: Test on Node v${{ matrix.node }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- uses: bahmutov/npm-install@v1
Expand All @@ -33,7 +33,7 @@ jobs:
if: github.ref == 'refs/heads/master'
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- uses: bahmutov/npm-install@v1
# https://github.com/cycjimmy/semantic-release-action
- name: Semantic Release
Expand Down

0 comments on commit 5cf99fc

Please sign in to comment.