-
Notifications
You must be signed in to change notification settings - Fork 2
52 lines (48 loc) · 1.13 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
name: CI
on:
push:
branches:
- main
paths-ignore:
- "**.md"
- "LICENSE_**"
- ".pre-commit-config.yaml"
pull_request:
paths-ignore:
- "**.md"
- "LICENSE_**"
- ".pre-commit-config.yaml"
jobs:
build:
runs-on: ubuntu-latest
name: "Build node"
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Install node
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: Build
run: npm run full-build
lint:
runs-on: ubuntu-latest
needs: build
name: "Lint on ubuntu-latest"
steps:
- uses: actions/checkout@v3
- name: Install node
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: Install dependencies
run: npm install
- name: Lint & check formatting
run: npm run rome-ci