forked from IndianBoy42/tree-sitter-just
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 867 Bytes
/
ci.yaml
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
on:
workflow_dispatch:
pull_request:
push:
jobs:
deno:
name: Deno format and lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: "~1.39"
- run: deno lint
- run: deno fmt --check
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: git tag pre-updates
- run: npm run gen
- run: npm install
- run: npm test
# FIXME: also parse tests/*.just
- name: Verify `npm run gen` does not change files
run: |
npm run gen
git diff pre-updates --no-patch --exit-code