-
Notifications
You must be signed in to change notification settings - Fork 106
38 lines (34 loc) · 924 Bytes
/
pr.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
name: Pull request
on:
pull_request:
branches: [ master ]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: psf/black@stable
with:
options: ". -l 79 --check"
test:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
# Test on every node version that is supported
# by our package.json.
# Hopefully this allows us to catch problems
# with differing versions ahead of time.
node-version: [19.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# https://docs.npmjs.com/cli/v9/commands/npm-ci
- run: npm install --force
- run: npm run build
- run: npm test