Skip to content

fix ci and update eslint #2

fix ci and update eslint

fix ci and update eslint #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Run linting
run: npm run lint
# Will be added later on
# - name: Run tests
# run: npm test -- --coverage
- name: Build
run: npm run build