Skip to content

Use nix-systems to allow customization of the target platforms #39

Use nix-systems to allow customization of the target platforms

Use nix-systems to allow customization of the target platforms #39

name: Check node-typescript
on:
push:
paths:
- node-typescript/**
- .github/workflows/check-node-typescript.yml
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: cachix/install-nix-action@v22
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
with:
path: ./tmp
- run: nix flake new -t ./tmp#node-typescript ./work
- name: Prepare the project
working-directory: work
run: |
git init
git add .
- run: nix develop -L -c pnpm --version
working-directory: work
- run: nix develop -L -c tsc --version
working-directory: work
- run: nix develop -L -c typescript-language-server --version
working-directory: work