-
Notifications
You must be signed in to change notification settings - Fork 147
42 lines (40 loc) · 928 Bytes
/
build.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
name: Build
on:
pull_request:
branches:
- main
- develop
push:
branches:
- main
- develop
jobs:
test:
services:
devnet:
image: shardlabs/starknet-devnet-rs:0.0.6-seed0
ports:
- 5050:5050
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: 20
- uses: pnpm/action-setup@v4
with:
version: 9.10.0
- name: Install dependencies
run: pnpm install --strict-peer-dependencies=false --no-frozen-lockfile
- name: Run check format
run: pnpm format:check
- name: Run lint
run: pnpm lint
- name: Run build
run: pnpm build
- name: Run test
run: pnpm test:ci
- name: Check change files
run: pnpm beachball check