Skip to content

chore(deps): bump cachix/install-nix-action from 23 to 24 #18

chore(deps): bump cachix/install-nix-action from 23 to 24

chore(deps): bump cachix/install-nix-action from 23 to 24 #18

Workflow file for this run

name: Check pulumi-ts
on:
push:
paths:
- pulumi-ts/**
- .github/workflows/check-pulumi-ts.yml
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: cachix/install-nix-action@v24
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4
with:
path: ./tmp
- run: nix flake new -t ./tmp#pulumi-ts ./work
- name: Prepare the project
working-directory: work
run: |
git init
git add .
- run: nix develop -L -c pulumi version
working-directory: work
- run: nix develop -L -c bash -c "command -v pulumi-language-nodejs"
working-directory: work
- run: nix develop -L -c typescript-language-server --version
working-directory: work