chore(all): update security for the project (#345) #354
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |