implementation nucleus-angular and improvement spa #51
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: Deploy to Firebase Hosting on merge | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build_and_deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install dependencies and build | |
run: npm ci --legacy-peer-deps && npm run build | |
- name: Test unit library | |
run: npm run test:lib -- --watch=false --browsers=ChromeHeadless | |
- name: Test unit application | |
run: npm run test -- --watch=false --browsers=ChromeHeadless | |
- name: Deploy to Firebase Hosting | |
uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: ${{ secrets.GITHUB_TOKEN }} | |
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_ANGULAR_VLIBRAS }} | |
channelId: live | |
projectId: angular-vlibras |