-
Notifications
You must be signed in to change notification settings - Fork 17
60 lines (51 loc) · 1.44 KB
/
ci.yaml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: ci
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [16, 18]
steps:
- name: Checkout branch
uses: actions/checkout@v3
# Slightly fragile since it runs on the default node version
# but until setup-node supports corepack (https://github.com/actions/setup-node/issues/531)
# this is our best option
- name: Enable core pack
run: |
corepack enable
pnpm --version
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build
- name: Generate
run: pnpm run generate
- name: Lint
run: pnpm run format
- name: Test
run: pnpm run test
- name: Check changed files
id: check_changed_files
run: |
if [[ -z $(git status --porcelain | tee /dev/stderr) ]]; then
echo "No changed files detected."
else
echo "::error::Formatting resulted in changed files. Please make sure this branch is up to date and run 'pnpm format'. Verify the changes are what you want and commit them."
exit 1
fi