-
-
Notifications
You must be signed in to change notification settings - Fork 32
45 lines (40 loc) · 979 Bytes
/
status-check.yml
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
39
40
41
42
43
44
45
name: Status check
on: [pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Lint
run: |
yarn --frozen-lockfile
yarn lint
unit-test:
name: Unit test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Unit test
run: |
yarn --frozen-lockfile
yarn test
integration-test:
name: Integration test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
serverless-version: [latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install serverless
run: yarn global add serverless@${{ matrix.serverless-version }}
- name: Integration test
run: |
yarn --frozen-lockfile
yarn integration