Skip to content

chore(deps-dev): bump prettier from 3.1.1 to 3.2.5 #500

chore(deps-dev): bump prettier from 3.1.1 to 3.2.5

chore(deps-dev): bump prettier from 3.1.1 to 3.2.5 #500

Workflow file for this run

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