Merge pull request #86 from 21CSM/dependabot/npm_and_yarn/globals-15.… #96
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: Build | |
on: | |
push: | |
branches: [develop-firebase] | |
jobs: | |
flake-health-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check Flake Health | |
uses: DeterminateSystems/flake-checker-action@v9 | |
build: | |
runs-on: ubuntu-latest | |
needs: flake-health-check | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v14 | |
- name: Run Magic Nix Cache | |
uses: DeterminateSystems/magic-nix-cache-action@v8 | |
- name: Run Nix Flake Checks | |
run: nix flake check | |
- name: Install Dependencies | |
run: nix develop -c pnpm install | |
- name: Run Unit Tests | |
run: nix develop -c pnpm run test:unit:coverage | |
- name: Upload results to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Run Integration Tests | |
run: nix develop -c pnpm run test:integration | |
- name: Build Project | |
run: nix develop -c pnpm run build | |
- name: Upload Build Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build | |
path: build |