-
Notifications
You must be signed in to change notification settings - Fork 7
61 lines (57 loc) · 1.54 KB
/
swc.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
53
54
55
56
57
58
59
60
61
name: SWC validation
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
rust:
name: Rust tests & lints
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
- name: Enable caching
uses: Swatinem/rust-cache@v2
with:
workspaces: swc
- name: Run cargo check
run: cargo check --manifest-path swc/Cargo.toml
- name: Run cargo test
run: cargo test --manifest-path swc/Cargo.toml
- name: Run cargo fmt
run: cargo fmt --manifest-path swc/Cargo.toml --all -- --check
- name: Run cargo clippy
run: cargo clippy --manifest-path swc/Cargo.toml -- -D warnings
wasm:
name: Wasm plugin tests
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Add wasm32-wasi target
run: rustup target add wasm32-wasi
- name: Enable caching
uses: Swatinem/rust-cache@v2
with:
workspaces: swc
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install NPM dependencies
run: npm i
- name: Build JS
run: npm run build
- name: Build SWC plugin
run: npm run build:swc
- name: Run tests
run: npm run test:swc:jest