Skip to content

Commit 28fc90a

Browse files
author
Christopher Dierkens
committed
unit test on ubuntu and all active node LTSs
1 parent b2d17f1 commit 28fc90a

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/pull_request.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: Pull Request
3+
4+
on: [pull_request]
5+
6+
jobs:
7+
build:
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
os:
12+
- ubuntu-latest
13+
# - macos-latest
14+
# - windows-latest
15+
node_version:
16+
- 12
17+
- 14
18+
- 16
19+
name: Node ${{ matrix.node_version }} on ${{ matrix.os }}
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v2
23+
- name: Setup node
24+
uses: actions/setup-node@v2
25+
with:
26+
node-version: ${{ matrix.node_version }}
27+
- name: Test
28+
run: |
29+
yarn install --frozen-lockfile
30+
yarn test

0 commit comments

Comments
 (0)