chore(deps-dev): bump eslint from 8.37.0 to 8.54.0 #1682
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 | |
on: pull_request | |
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 | |
macos-build: | |
runs-on: macos-latest | |
name: Build on MacOS | |
env: | |
CI: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3.6.0 | |
with: | |
node-version: lts/* | |
- 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 | |
windows-build: | |
runs-on: windows-latest | |
name: Build on Windows | |
env: | |
CI: true | |
steps: | |
- name: Set git to use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3.6.0 | |
with: | |
node-version: lts/* | |
- 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 |