Bump js-yaml from 4.3.1 to 4.3.2 #353
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: language-haskell CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| # We test latest, the LTS version and an old one. | |
| node-version: [26.x, 24.x, 18.x] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install dependencies | |
| run: npm install -g js-yaml vscode-tmgrammar-test | |
| - name: Generate grammar JSON files | |
| run: make grammars | |
| - name: Run tests | |
| run: make test |