feat: added nav bar and footer #6761
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: ci | |
on: | |
push: | |
branches: | |
- main | |
- master | |
pull_request: | |
branches: | |
- main | |
- master | |
- esds-3.0-vue3-primevue | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout π | |
uses: actions/checkout@v4 | |
- name: Get nodenv version π | |
id: nodenv | |
shell: bash | |
run: echo "node-version=$(cat .node-version)" >> $GITHUB_OUTPUT | |
- name: Setup node env π | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '${{ steps.nodenv.outputs.node-version }}' | |
check-latest: true | |
- name: Install dependencies π¨π»βπ» | |
run: | | |
make install | |
make symlink | |
- name: Building | |
run: make build | |
- name: Run linter π | |
id: linting | |
run: make lint | |
- name: Linting failure message | |
if: ${{ failure() && steps.linting.conclusion == 'failure' }} | |
run: echo "Linting failed. Run `make format` to apply automatic fixes and show remaining problems." | |
- name: Run tests π§ͺ | |
run: make test |