chore: update dependency @types/node to v20.19.35 #276
This file contains hidden or 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 | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| needs: [] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@v5 | |
| - name: Setup Nix cache | |
| uses: DeterminateSystems/magic-nix-cache-action@v2 | |
| - name: Check Nix flake Nixpkgs inputs | |
| uses: DeterminateSystems/flake-checker-action@main | |
| - name: Show flake | |
| run: nix flake show | |
| - name: Check flake | |
| run: nix flake check | |
| test: | |
| runs-on: ubuntu-latest | |
| needs: [] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@v5 | |
| - uses: ./ | |
| id: attic | |
| with: | |
| server: https://attic.alxandr.me/ | |
| cache: attic | |
| token: ${{ secrets.ATTIC_TOKEN }} | |
| - name: Build | |
| run: nix build .#attic --accept-flake-config | |
| - name: Push to attic | |
| run: attic push "${{ steps.attic.outputs.cache }}" ./result | |
| if: github.ref == 'refs/heads/main' |