Feature/ng 18 #3
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
name: Pull Request Actions | |
on: | |
pull_request: | |
branches: [devel] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: npm install | |
- name: Lint lux | |
run: npm run lint:lux | |
- name: Lint app | |
run: npm run lint | |
- name: Test lux | |
run: npm run test:coverage | |
- name: Build lux | |
run: npm run build:lux | |
- name: Build app | |
run: npm run build |