Skip to content

Commit

Permalink
ci: Adjust node versions for latest supported
Browse files Browse the repository at this point in the history
  • Loading branch information
nonara committed Jun 11, 2021
1 parent d54b5a4 commit 2699abd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: Node.js CI

on: [push, pull_request]
on: [ push, pull_request ]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [10.x, 12.x, 14.x]
os: [ ubuntu-latest, windows-latest ]
node-version: [ 12.x, 14.x, 16.x ]

steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
restore-keys: |
${{ runner.os }}-yarn-
- name: Setup Node.js 12.x to publish to npmjs.org
- name: Setup Node.js 14.x to publish to npmjs.org
uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'

- name: Install Packages
Expand Down

0 comments on commit 2699abd

Please sign in to comment.