frontend: add delete button to entity window, improve styling #486
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Frontend | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
type-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "18" # Specify the Node.js version you are using | |
- name: Install dependencies | |
run: npm install --legacy-peer-deps | |
working-directory: ./zettelkasten-front | |
- name: Run TypeScript compiler | |
run: npx tsc --noEmit | |
working-directory: ./zettelkasten-front | |
- name: Run Tests | |
run: npm test | |
working-directory: ./zettelkasten-front |