Skip to content

fix: remove test prop #471

fix: remove test prop

fix: remove test prop #471

Workflow file for this run

name: CI
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
lint:
name: Check for lint and format errors
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 16
- name: Install dependencies
run: yarn
- name: Lint files
run: yarn lint
- name: Build project
run: yarn build