Bump globals from 17.4.0 to 17.6.0 #525
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
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| ## make sure this corresponds with the version in release.yml | |
| node-version: latest | |
| - run: | | |
| npm ci | |
| - name: Package extension | |
| run: npx vsce package | |
| - name: Upload extension vsix to workflow artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: haskell-${{ github.sha }}.vsix | |
| path: haskell-*.vsix |