build(deps-dev): bump typescript from 5.0.3 to 5.3.3 #1903
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: Node.js CI - Push | |
on: push | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ubuntu-build: | |
runs-on: ubuntu-latest | |
name: Build on Ubuntu | |
env: | |
DISPLAY: ":99.0" | |
CI: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3.6.0 | |
with: | |
node-version: lts/* | |
- run: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & | |
name: Start Xvfb | |
- run: npm install -g typescript vsce json | |
- run: npm ci | |
- run: npm run vscode:prepublish | |
- run: npm run test-compile | |
- run: npm test | |
name: Test | |
- run: npm run lint | |
name: ESLint |