Skip to content

Commit

Permalink
Update deps and CI settings
Browse files Browse the repository at this point in the history
  • Loading branch information
ybiquitous committed Apr 30, 2022
1 parent ab5c4c5 commit f250752
Show file tree
Hide file tree
Showing 3 changed files with 2,921 additions and 2,267 deletions.
25 changes: 11 additions & 14 deletions .github/workflows/nodejs.yml
Expand Up @@ -11,22 +11,18 @@ on:

jobs:
lint:
name: Lint on Node.js ${{ matrix.node }} and ${{ matrix.os }}
name: Lint

runs-on: ${{ matrix.os }}

strategy:
matrix:
node: [14]
os: [ubuntu-latest]
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
- name: Use Node.js LTS
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
node-version: 'lts/*'
cache: npm

- name: Install latest npm
run: npm install --global npm@latest
Expand All @@ -45,15 +41,16 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [12, 14, 16]
node: [12, 14, 16, 18]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm

- name: Install latest npm
run: npm install --global npm@latest
Expand Down

0 comments on commit f250752

Please sign in to comment.