Skip to content

Bump eslint-plugin-prettier from 4.0.0 to 4.2.1 #3

Bump eslint-plugin-prettier from 4.0.0 to 4.2.1

Bump eslint-plugin-prettier from 4.0.0 to 4.2.1 #3

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches:
- main
jobs:
unit-test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v3
- name: Setup Node.js 16
uses: actions/setup-node@v3
with:
node-version: "16.x"
cache: "npm"
env:
CI: true
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: yarn lint
run: yarn lint
env:
CI: true
- name: yarn build
run: yarn build
env:
CI: true
- name: yarn test
run: yarn test
env:
CI: true