chore(deps-dev): bump prettier from 3.1.1 to 3.2.5 #500
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: | |
branches: [main] | |
pull_request: | |
jobs: | |
lint: | |
strategy: | |
matrix: | |
node-version: ["16.x", "18.x"] | |
platform: [ubuntu-20.04] | |
runs-on: ${{ matrix.platform }} | |
name: "lint in ${{ matrix.platform }} ${{ matrix.node-version }}" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: lint | |
run: | | |
yarn install --immutable | |
yarn lint | |
test: | |
strategy: | |
matrix: | |
node-version: ["16.x", "18.x"] | |
platform: [ubuntu-20.04] | |
runs-on: ${{ matrix.platform }} | |
name: "test in ${{ matrix.platform }} ${{ matrix.node-version }}" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: test | |
run: | | |
yarn install --immutable | |
yarn build | |
yarn test |