Bump minimatch #46
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
| # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
| name: Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [macos-latest, ubuntu-latest, windows-latest] | |
| steps: | |
| - name: Checkout Branch | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Build Extension | |
| run: | | |
| npm install | |
| npm run compile | |
| - name: Package Extension | |
| run: | | |
| npm install -g vsce | |
| vsce package | |
| mkdir vsix | |
| mv *.vsix vsix | |
| - name: Archive Extension | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: vsix-${{ matrix.os }} | |
| path: vsix |