Skip to content

Commit

Permalink
Update CI from upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Mar 22, 2024
1 parent 3c43a21 commit 9472c1d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ on:

env:
FORCE_COLOR: 2
NODE: 18 # The Node.js version to run lint on
NODE: 20 # The Node.js version to run lint on

permissions:
contents: read

jobs:
run:
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
env:
FORCE_COLOR: 2

permissions:
contents: read

jobs:
test:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
Expand All @@ -20,8 +23,13 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [12, 14, 16, 18]
os: [ubuntu-latest]
node: [12, 14, 16, 18, 20]
include:
- os: macos-latest
node: 18
- os: windows-latest
node: 18

steps:
- name: Clone repository
Expand Down

0 comments on commit 9472c1d

Please sign in to comment.