Bump @types/node from 16.18.12 to 20.14.2 #62
Workflow file for this run
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
name: pr-verify | |
on: [push, pull_request] | |
jobs: | |
pr-verify-job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Code | |
uses: actions/checkout@v2 | |
- name: Set Up NodeJS | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
- run: npm install -g typescript "vsce" | |
- run: npm install | |
- run: npm run compile | |
- run: npm run vscode:prepublish | |
- run: npm run build-vsix | |
- run: ls -ll *.vsix | |
- run: npm run eslint |