-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (35 loc) · 968 Bytes
/
test.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
name: Test Package
on: ["pull_request"]
jobs:
lint:
name: Prettier formatting and linting check
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "18"
- name: Install dependencies
run: yarn
- name: Is formatted and linted
run: yarn lint
test:
name: Run tests
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "18"
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test