Bump @typescript-eslint/parser from 8.16.0 to 8.18.1 #72
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: Build Extension | |
on: | |
workflow_dispatch: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build the extension | |
run: yarn compile | |
- name: Run test on Linux | |
run: xvfb-run -a yarn test | |
if: runner.os == 'Linux' | |
- name: Run test on other OS | |
run: yarn test | |
if: runner.os != 'Linux' |