Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

toevoegen github actions #35

Merged
merged 7 commits into from
Mar 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Frontend
on: [push]
jobs:
lint:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: cd frontend && npm install
- name: Lint code
run: cd frontend && npx eslint .
- name: Run TypeScript checks
run: cd frontend && npx tsc --noEmit