Skip to content

Bump sass from 1.58.3 to 1.65.1 in /ui/app #378

Bump sass from 1.58.3 to 1.65.1 in /ui/app

Bump sass from 1.58.3 to 1.65.1 in /ui/app #378

Workflow file for this run

name: Test
on:
pull_request:
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v20
- uses: cachix/cachix-action@v12
with:
name: tstr
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Bring up dev env
run: nix develop -c dev/up
- name: Run go tests
run: nix develop -c dev/test
- name: Cleanup dev env
if: success() || failure()
run: nix develop -c dev/down