-
Notifications
You must be signed in to change notification settings - Fork 18
51 lines (43 loc) · 1.21 KB
/
ci-autogen.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
name: Check autogen files
on:
push:
branches: ['main']
paths:
[
'programs/**',
'lib/**',
'Cargo.toml',
'Cargo.lock',
]
pull_request:
branches: ['main']
paths:
[
'client/**',
'docs/**',
'lib/**',
'programs/**',
]
workflow_dispatch:
env:
RUST_TOOLCHAIN: '1.78.0'
jobs:
autogen-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'yarn'
- name: Cache dependencies
uses: Swatinem/rust-cache@v2
- name: Set Rust version
run: rustup toolchain install ${{ env.RUST_TOOLCHAIN }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- uses: nickcharlton/diff-check@main
with:
command: cd client/idl && yarn && node generateIdl.js && node generateClient.js && node generateIdl.js && cd - ; npm install -g prettier; prettier client/ts --write ; prettier client/ts/src/manifest --write; prettier client/ts/src/wrapper --write; prettier client/ts/src/ui_wrapper --write; git diff;