Skip to content

Change GitHub Actions #4

Change GitHub Actions

Change GitHub Actions #4

Workflow file for this run

name: CI
on:
push:
pull_request:
branches:
- main
paths:
- 'frontend/**'
jobs:
test:
name: Check the source code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Move to frontend
run: cd frontend
- name: Install packages
run: npm ci
- name: Prettier
run: npm run prettier
- name: Lint
run: npm run lint