-
Notifications
You must be signed in to change notification settings - Fork 40
53 lines (42 loc) · 1.01 KB
/
ci.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
43
44
45
46
47
48
49
50
51
52
53
name: CI
on:
workflow_dispatch:
push:
branches:
- dev
- master
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 600
steps:
- name: Cancel previous runs
uses: styfle/[email protected]
with:
all_but_latest: true
access_token: ${{ github.token }}
- name: Check out the repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly-56dbd20c7179570c53b6c17ff34daa7273a4ddae
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test