forked from github-tools/github-release-notes
-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (35 loc) · 850 Bytes
/
ci.yml
File metadata and controls
38 lines (35 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Test Status
on:
workflow_dispatch:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
env:
CI: true
strategy:
matrix:
os: [ubuntu-latest]
node-version: [lts/-1, lts/*]
experimental: [false]
include:
- os: ubuntu-latest
node-version: latest
experimental: true
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
- run: npm run build
- run: npm update
- run: npm ci
- run: npm test
- run: npm run build