Skip to content

Bump eslint-plugin-prettier from 4.2.1 to 5.5.5 #12

Bump eslint-plugin-prettier from 4.2.1 to 5.5.5

Bump eslint-plugin-prettier from 4.2.1 to 5.5.5 #12

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
test:
name: Test & Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Enable Corepack
run: corepack enable
- name: Setup Yarn
run: corepack prepare yarn@4.11.0 --activate
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run linter
run: yarn lint
- name: Run unit tests
run: yarn test
- name: Build project
run: yarn build
- name: Run e2e tests
run: yarn test:e2e