forked from oxc-project/oxc
-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (58 loc) · 1.62 KB
/
conformance.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
62
63
64
65
66
name: Conformance
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize]
paths-ignore:
- '**/*.md'
- '**/*.yml'
- '**/package.json'
- 'npm/**'
- 'website/**'
- 'crates/oxc/**'
- 'crates/oxc_cli/**'
- 'crates/oxc_linter/**'
- 'crates/oxc_type_synthesis/**'
- 'crates/oxc_wasm/**'
- 'crates/oxc_prettier/**'
- 'tasks/prettier_conformance/**'
push:
branches:
- main
paths-ignore:
- '**/*.md'
- '**/*.yml'
- '**/package.json'
- 'npm/**'
- 'website/**'
- 'crates/oxc/**'
- 'crates/oxc_cli/**'
- 'crates/oxc_linter/**'
- 'crates/oxc_type_synthesis/**'
- 'crates/oxc_wasm/**'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: ${{ github.ref_name != 'main' }}
jobs:
conformance:
name: Conformance
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true # Pull submodules for `cargo coverage`
- name: Install Rust Toolchain
uses: ./.github/actions/rustup
- name: Set up Bun
uses: oven-sh/setup-bun@v1
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- run: cargo coverage
- run: cargo run --release -p oxc_transform_conformance -- --exec
- run: cargo run --release -p oxc_prettier_conformance
# - run: cargo minsize
- name: Check for snapshot diff
run: git diff --exit-code