NEOS-1424: fixes ability to remove a team invite #2422
Workflow file for this run
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
on: | |
pull_request: | |
paths: | |
- frontend/** | |
name: Frontend | |
jobs: | |
knip: | |
name: Knip | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: frontend/apps/web | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: npm | |
cache-dependency-path: ./frontend/package-lock.json | |
- run: npm install | |
- run: npm run knip:production | |
prettier: | |
name: Prettier | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: frontend | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: npm | |
cache-dependency-path: ./frontend/package-lock.json | |
- run: npm install | |
- run: npm run prettier:check | |
build: | |
name: TS Build | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: frontend | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: npm | |
cache-dependency-path: ./frontend/package-lock.json | |
- run: npm install | |
- name: Build | |
run: npm run build | |
env: | |
NODE_ENV: production |