Move head title to _app #461
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: hello | |
on: push | |
defaults: | |
run: | |
working-directory: ./my-app | |
jobs: | |
build-project: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install NPM dependencies | |
run: npm install | |
- name: Ensure code quality via ESLint | |
run: npm run lint -- --fix | |
- name: Build project assets | |
run: npm run build |