chore(deps-dev): bump prettier from 2.8.7 to 3.0.1 #1342
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: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x, 16.x] | |
eslint-version: [5, 6, 7, 8] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint | |
run: npm run lint | |
- name: Install ESLint v${{ matrix.eslint-version }} | |
run: npm install --no-save --force eslint@${{ matrix.eslint-version }} | |
- name: Test | |
run: npm test | |
env: | |
CI: true | |
- name: Build | |
run: npm run build |