We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acdf145 commit 2b8c804Copy full SHA for 2b8c804
.github/workflows/ci.yml
@@ -14,6 +14,11 @@ jobs:
14
runs-on: ubuntu-latest
15
steps:
16
- uses: actions/checkout@v4
17
+ - uses: actions/setup-node@v4
18
+ with:
19
+ node-version: '20'
20
+ - name: Build frontend
21
+ run: cd web && npm ci && npm run build
22
- uses: dtolnay/rust-toolchain@stable
23
with:
24
components: rustfmt, clippy
@@ -30,6 +35,11 @@ jobs:
30
35
os: [ubuntu-latest, macos-latest, windows-latest]
31
36
32
37
38
39
40
41
42
33
43
34
44
- uses: Swatinem/rust-cache@v2
45
- name: Test
0 commit comments