Skip to content

build(deps-dev): bump typescript from 4.8.4 to 5.0.4 #544

build(deps-dev): bump typescript from 4.8.4 to 5.0.4

build(deps-dev): bump typescript from 4.8.4 to 5.0.4 #544

Workflow file for this run

# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: 'Node.js CI'
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
ci:
runs-on: 'ubuntu-latest'
timeout-minutes: 15
steps:
- uses: 'actions/checkout@v3'
- name: 'Use Node.js'
uses: 'actions/setup-node@v3.6.0'
with:
node-version: 'lts/*'
- name: 'Install dependencies'
run: 'npm install'
- name: 'Lint'
run: 'npm run lint'
- name: 'Package the extension'
run: 'npm run package'
- name: 'Test'
run: 'xvfb-run -a npm test'