chore(deps-dev): Bump @biomejs/biome from 1.9.3 to 1.9.4 #98
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: biome check | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [18] | |
env: | |
NODE_ENV: test | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install yarn | |
run: | | |
curl --compressed -o- -L https://yarnpkg.com/install.sh | bash | |
- name: yarn install | |
run: | | |
yarn | |
- name: biome format | |
run: | | |
yarn run fmt | |
- name: biome check | |
run: | | |
yarn run lint |