Skip to content

Commit

Permalink
Merge pull request #430 from amclin/ci/spread-node-by-alias
Browse files Browse the repository at this point in the history
Ci/spread node by alias
  • Loading branch information
amclin authored Jul 7, 2022
2 parents 483a56c + e67c5e5 commit ceb32f4
Show file tree
Hide file tree
Showing 5 changed files with 15,718 additions and 52 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

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

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
persist-credentials: false
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: lts/*
- run: npm ci
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:

strategy:
matrix:
node-version: ['12', '14', '15']
node-version: ['lts/*', 'lts/-1', 'lts/-2']
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand Down
Loading

0 comments on commit ceb32f4

Please sign in to comment.