Skip to content

Fixed girls night

Fixed girls night #24

Workflow file for this run

name: Quality Check
on: [push, pull_request]
jobs:
quality:
name: Quality Check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Node.js v16
uses: actions/setup-node@v2
with:
node-version: 16
cache: 'yarn'
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn --immutable
- name: Build
run: yarn build
- name: ESLint
run: yarn lint