Skip to content

remove unused dependencies, scroll to the top button, add tsc to the github action #23

remove unused dependencies, scroll to the top button, add tsc to the github action

remove unused dependencies, scroll to the top button, add tsc to the github action #23

name: FrontendTest
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm ci
- run: npm run build --if-present
- run: tsc
- run: npm test
- run: npm run lint