We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b93cc11 commit e632bf9Copy full SHA for e632bf9
.github/workflows/main.yml
@@ -2,22 +2,16 @@ name: CI
2
on: [push]
3
jobs:
4
build:
5
- name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
6
-
7
- runs-on: ${{ matrix.os }}
8
- strategy:
9
- matrix:
10
- node: ['12.x', '14.x', '16.x']
11
- os: [ubuntu-latest, macOS-latest]
12
+ name: Lint, test, build and release on Node 16
+ runs-on: ubuntu-latest
13
steps:
14
- name: Checkout repo
15
uses: actions/checkout@v2
16
17
- - name: Use Node ${{ matrix.node }}
+ - name: Use Node 16
18
uses: actions/setup-node@v1
19
with:
20
- node-version: ${{ matrix.node }}
+ node-version: 16
21
22
- name: Install deps and build (with cache)
23
uses: bahmutov/npm-install@v1
0 commit comments