Skip to content

Commit

Permalink
Workflow updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
hjdhjd committed Dec 27, 2022
1 parent 41a92f1 commit 1d2746a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
# Create the build matrix for all the environments we're validating against.
strategy:
matrix:
node-version: [ 12.x, 14.x ]
node-version: [ lts/-1, lts/* ]
os: [ ubuntu-latest ]

# Specify the environments we're going to build in.
Expand All @@ -29,10 +29,10 @@ jobs:
# Execute the build activities.
steps:
- name: Checkout the repository.
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup the node ${{ matrix.node-version }} environment.
uses: actions/setup-node@v2.5.1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -55,14 +55,14 @@ jobs:
# Execute the build and publish activities.
steps:
- name: Checkout the repository.
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup the node environment.
uses: actions/setup-node@v2.5.1
uses: actions/setup-node@v3
with:

# Use the oldest node LTS version that we support.
node-version: '12.x'
node-version: lts/-1

# Use the NPM registry.
registry-url: 'https://registry.npmjs.org/'
Expand Down

0 comments on commit 1d2746a

Please sign in to comment.