chore(deps): update dependency eslint-plugin-jsdoc to v48 (#130) #280
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: Test Extension | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '16.14.2' | |
- run: mkdir artifacts | |
- run: npm ci | |
- name: Prettier | |
run: npm run prettier-check | |
- name: Lint | |
run: npm run eslint | |
- name: Download Phpactor | |
run: npm run download-phpactor | |
- run: xvfb-run -a npm test |