-
-
Notifications
You must be signed in to change notification settings - Fork 39
34 lines (31 loc) · 672 Bytes
/
test.yml
File metadata and controls
34 lines (31 loc) · 672 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
name: Build
on:
push:
branches:
- '!production'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "22.x"
- run: corepack enable
- run: npm install
- run: touch .env
- run: npm run build
env:
CI: true
static-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "22.x"
- run: corepack enable
- run: npm install
- run: npm run eslint
- run: npm run prettier-check