Skip to content

Merge branch 'dev-4.0' of https://github.com/project-fika/Fika-Server… #95

Merge branch 'dev-4.0' of https://github.com/project-fika/Fika-Server…

Merge branch 'dev-4.0' of https://github.com/project-fika/Fika-Server… #95

Workflow file for this run

name: NPM Build & Lint
on:
workflow_dispatch:
push:
paths-ignore:
- '**/*.md'
pull_request:
paths-ignore:
- '**/*.md'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Lint
run: npm run lint