feat(workspace): add gsf if to start sci reporting in ci #369
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- uses: DeterminateSystems/flake-checker-action@main | |
- uses: nrwl/nx-set-shas@v3 | |
- run: nix develop --command npm ci --legacy-peer-deps | |
- run: nix develop --command npx nx run-many --target lint,test | |
- run: nix flake check | |
- run: nix build .#components | |
- run: nix build .#react | |
- run: nix build .#documentation |