Last change
on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
448 bytes
|
Line | |
---|
1 | name: CI
|
---|
2 |
|
---|
3 | on: [push, pull_request]
|
---|
4 |
|
---|
5 | jobs:
|
---|
6 | test:
|
---|
7 | runs-on: ${{ matrix.os }}
|
---|
8 |
|
---|
9 | strategy:
|
---|
10 | matrix:
|
---|
11 | os: [ubuntu-latest, windows-latest, macos-latest]
|
---|
12 | node-version: [8.x, 10.x, 12.x, 14.x]
|
---|
13 |
|
---|
14 | steps:
|
---|
15 | - uses: actions/checkout@v2
|
---|
16 | - name: Use Node.js ${{ matrix.node-version }}
|
---|
17 | uses: actions/setup-node@v1
|
---|
18 | with:
|
---|
19 | node-version: ${{ matrix.node-version }}
|
---|
20 | - run: npm install
|
---|
21 | - run: npm run ci
|
---|
Note:
See
TracBrowser
for help on using the repository browser.