-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (32 loc) · 919 Bytes
/
Copy pathci.yml
File metadata and controls
44 lines (32 loc) · 919 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
33
34
35
36
37
38
39
40
41
42
43
44
name: CI
on:
workflow_dispatch:
jobs:
build-and-lint:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install dependencies
run: npm ci
- name: Fetch Clang WASM artifacts
run: npm run fetch-clang
- name: Verify manifest-driven version sync
run: npm run version:check
- name: Run linter
run: npm run lint
- name: Build project
run: npm run build
- name: Verify release version sync
run: npm run release:check-version
- name: Run end-to-end session tests
run: npm run test:e2e
- name: Run compiler linker end-to-end tests
run: npm run test:e2e:compiler