-
Notifications
You must be signed in to change notification settings - Fork 15
77 lines (63 loc) · 1.82 KB
/
Copy pathgrammars.yml
File metadata and controls
77 lines (63 loc) · 1.82 KB
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
67
68
69
70
71
72
73
74
75
76
77
name: Building tree-sitter grammars
on:
pull_request:
branches:
- main
paths:
- "server/src/languages/**/tree-sitter-**/**"
push:
branches:
- main
paths:
- "server/src/languages/**/tree-sitter-**/**"
permissions: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
HUSKY: 0
jobs:
tree-sitter-grammars:
name: Building tree-sitter (${{ matrix.os }})
runs-on: ${{ matrix.os }}
permissions:
contents: read
strategy:
fail-fast: false
matrix:
os:
- windows-latest
- ubuntu-latest
- macos-latest
steps:
- name: Fetch Sources
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Enable Corepack
if: matrix.os == 'windows-latest'
run: corepack enable --install-directory 'C:\npm\prefix'
- name: Enable Corepack
if: matrix.os != 'windows-latest'
run: corepack enable
- name: Setup Node.js 22.x
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 22.x
cache: "yarn"
- name: Setup EMSDK
uses: emscripten-core/setup-emsdk@4528d102f7230f0e7b276855c01ea1159be0e984 # v16
env:
EMSDK_VERSION: 4.0.15
with:
version: ${{ env.EMSDK_VERSION }}
actions-cache-folder: "emsdk-cache"
cache-key: emsdk-cache-${{ runner.os }}-${{ runner.arch }}-${{ env.EMSDK_VERSION }}
- name: Install dependencies
env:
YARN_ENABLE_HARDENED_MODE: false
run: yarn install --immutable
- name: Build WASM
run: yarn grammar:wasm
- name: Test parsers
run: yarn test:grammars