ci: Make release-please use 'node' strategy #85
This file contains 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
# SPDX-License-Identifier: MIT | |
# CI that builds this vscode extension | |
name: build | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- name: Install dependencies | |
run: | | |
npm install --loglevel verbose | |
npm install @vscode/vsce typescript -g | |
- name: compile | |
run: npm run compile | |
- name: remove dev dependencies | |
run: npm prune --production | |
- name: vsce package | |
run: vsce package |