-
Notifications
You must be signed in to change notification settings - Fork 44
35 lines (34 loc) · 794 Bytes
/
test.yml
File metadata and controls
35 lines (34 loc) · 794 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
name: test
on:
pull_request:
push:
branches: [master, main]
workflow_dispatch: {}
jobs:
lint:
runs-on: ubuntu-latest
name: NodeJS ${{ matrix.node }} lint
steps:
- uses: actions/checkout@v2
- name: Setup nodejs
uses: actions/setup-node@v2
with:
node-version: '18'
- run: npm install
- run: npm run dtslint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '16', '17', '18']
name: NodeJS ${{ matrix.node }} test
env:
MB_ACCESSKEY: test_iQpAp0KCs5GCsMpDhIx2leuNB
steps:
- uses: actions/checkout@v2
- name: Setup nodejs
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run test