Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit 1313172

Browse files
committed
chore: include test with latest node
1 parent 2c9cdd3 commit 1313172

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/CI.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,26 @@ on:
55

66
jobs:
77
Test:
8-
name: ${{ matrix.os }} - Atom ${{ matrix.atom_channel }}
8+
name: ${{ matrix.os }} - Atom ${{ matrix.atom_channel }} - node ${{ matrix.node_version }}
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
os:
14-
- ubuntu-latest
15-
- macos-latest
16-
- windows-latest
13+
os: [ubuntu-latest, macos-latest, windows-latest]
1714
atom_channel: [stable, beta]
15+
node_version: ['lts/*']
16+
include:
17+
- os: ubuntu-latest
18+
atom_channel: stable
19+
node_version: '*'
1820
steps:
1921
- uses: actions/checkout@v2
2022
- uses: UziTech/action-setup-atom@v2
2123
with:
2224
version: ${{ matrix.atom_channel }}
2325
- uses: actions/setup-node@v3
2426
with:
25-
node-version: "lts/*"
27+
node-version: ${{ matrix.node_version }}
2628
- name: Install dependencies
2729
run: |
2830
apm install

0 commit comments

Comments
 (0)