-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (30 loc) · 800 Bytes
/
Copy pathci.yml
File metadata and controls
32 lines (30 loc) · 800 Bytes
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
name: CI
on:
push:
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
workspaces: |
upstream/silverscript -> target
- name: Bootstrap pinned silverc
run: bash scripts/bootstrap-silverc.sh
- name: Install dependencies
run: npm install
- name: Typecheck
run: npm run typecheck
- name: Check generated manifest artifacts
run: npm run manifests:check
- name: Check wizard build artifact
run: npm run wizard:check
- name: Test
run: npm test