Skip to content

Commit 1c8c0ff

Browse files
committed
move github workflow from syntax/.github to .github
1 parent 317559e commit 1c8c0ff

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

syntax/.github/workflows/ci.yml renamed to .github/workflows/ci.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [ master ]
88

99
jobs:
10-
test:
10+
test-syntax:
1111
runs-on: macos-latest
1212

1313
steps:
@@ -29,6 +29,10 @@ jobs:
2929
with:
3030
node-version: 14.4.0
3131

32-
- run: npm ci
32+
- name: Install depedencies
33+
working-directory: ./syntax
34+
run: npm ci
3335

34-
- run: eval $(opam env) && make roundtrip-test
36+
- name: Run tests
37+
working-directory: ./syntax
38+
run: eval $(opam env) && make roundtrip-test

0 commit comments

Comments
 (0)