Skip to content

build(deps): bump actions/checkout from 3.5.3 to 3.6.0 #12

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

build(deps): bump actions/checkout from 3.5.3 to 3.6.0 #12

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@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.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