Bump actions/checkout from 6.0.0 to 6.0.1 #85
Workflow file for this run
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
| # Copyright 2025, Intel Corporation | |
| # SPDX-License-Identifier: BSD | |
| name: Test Grammar | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Check out the repository using a pinned commit SHA. | |
| - name: Check out repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| # Set up Node.js using a pinned commit SHA. | |
| - name: Set up Node.js | |
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # 6.0.0 | |
| # Replace the above SHA with your chosen pinned commit. | |
| with: | |
| node-version: '18' | |
| # Install the vscode-tmgrammar-test package. | |
| - name: Install vscode-tmgrammar-test globally | |
| run: npm install -g vscode-tmgrammar-test | |
| # Run grammar tests from the tests folder. | |
| - name: Run grammar tests | |
| run: vscode-tmgrammar-test tests/*.ispc |