chore(deps): bump the npm_and_yarn group across 3 directories with 25 updates #3218
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" | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths-ignore: | |
- 'data/**' | |
- 'ui/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ lts/iron ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: install ts auto mock and run test | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgbm-dev | |
npm ci | |
npm run ts-patch:install | |
npm run build | |
npm test | |
check-type: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ lts/iron ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: check eslint and prettier | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgbm-dev | |
npm ci | |
npm run eslint | |
npm run prettier |