Skip to content

build(deps): bump actions/checkout from 3.5.3 to 4.1.0 #17

build(deps): bump actions/checkout from 3.5.3 to 4.1.0

build(deps): bump actions/checkout from 3.5.3 to 4.1.0 #17

Workflow file for this run

name: CI
on:
pull_request:
permissions:
contents: read
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Set up Nix
uses: cachix/install-nix-action@6ed004b9ccb68dbc28e7c85bee15fa93dbd214ac # v22
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: Set up magic Nix cache
uses: DeterminateSystems/magic-nix-cache-action@8a218f9e264e9c3803c9a1ee1c30d8e4ab55be63 # v2
- name: Prepare Nix shell
run: nix develop --impure .#ci
- name: Download dependencies
run: nix develop --impure .#ci -c yarn install --frozen-lockfile
- name: Build
run: nix develop --impure .#ci -c yarn build