Skip to content

Commit

Permalink
chore(deps-dev): Bump dependencies (#1347)
Browse files Browse the repository at this point in the history
  • Loading branch information
fb55 committed Apr 28, 2023
1 parent de72fc7 commit fe7743e
Show file tree
Hide file tree
Showing 5 changed files with 1,659 additions and 2,577 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/nodejs-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ on:
env:
CI: true
FORCE_COLOR: 2
NODE_COV: 16 # The Node.js version to run coveralls on
NODE_COV: "lts/*" # The Node.js version to run coveralls on

permissions:
contents: read

jobs:
lint:
Expand All @@ -18,23 +21,27 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: lts/*
cache: npm
- run: npm ci
- run: npm run lint

test:
permissions:
checks: write # for coverallsapp/github-action to create new checks
contents: read # for actions/checkout to fetch code
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
node:
- 10
- 12
- 14
- 16
- 18
- "lts/*"

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit fe7743e

Please sign in to comment.