Skip to content

Commit d8b6215

Browse files
committed
Compiler testing (#1547)
1 parent 9bdd875 commit d8b6215

File tree

38 files changed

+3601
-72
lines changed

38 files changed

+3601
-72
lines changed

.github/workflows/compiler.test.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Compiler test
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'compiler/**'
7+
8+
jobs:
9+
compiler-test:
10+
name: build
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
16+
- name: Use Node.js 16.x
17+
uses: actions/setup-node@v1
18+
with:
19+
node-version: 16.x
20+
21+
- name: Install deps
22+
run: |
23+
make setup
24+
25+
- name: Test
26+
working-directory: ./compiler
27+
run: npm test

0 commit comments

Comments
 (0)