File tree Expand file tree Collapse file tree 3 files changed +28
-16
lines changed
Expand file tree Collapse file tree 3 files changed +28
-16
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Node CI
2+
3+ on : [push]
4+
5+ jobs :
6+ build :
7+
8+ strategy :
9+ matrix :
10+ os : [ubuntu-latest]
11+ node-version : [10.x, 12.x]
12+
13+ runs-on : ${{ matrix.os }}
14+
15+ steps :
16+ - uses : actions/checkout@v1
17+ - name : Use Node.js ${{ matrix.node-version }}
18+ uses : actions/setup-node@v1
19+ with :
20+ node-version : ${{ matrix.node-version }}
21+ - name : yarn install and test
22+ run : |
23+ yarn install --frozen-lockfile
24+ yarn test
25+ env :
26+ CI : true
Original file line number Diff line number Diff line change 11# @observablehq/stdlib
22
3+ [ ![ Node CI] ( https://github.com/observablehq/stdlib/workflows/Node%20CI/badge.svg )] ( https://github.com/observablehq/stdlib/actions?workflow=Node+CI )
4+
35The Observable standard library.
46
57For examples, see https://observablehq.com/@observablehq/standard-library .
You can’t perform that action at this time.
0 commit comments