Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

feat: Adds waitlist queue interaction & fix endpoint validation #30

feat: Adds waitlist queue interaction & fix endpoint validation

feat: Adds waitlist queue interaction & fix endpoint validation #30

Workflow file for this run

name: style
on:
push:
branches: main
pull_request:
branches: main
jobs:
prettier:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Run prettier
run: |
yarn install --dev --exact --frozen-lockfile
yarn format:check
eslint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Run eslint
run: |
yarn install --dev --exact --frozen-lockfile
yarn lint:check