Skip to content

re-upload preview

re-upload preview #19

Workflow file for this run

name: Run tests
on:
push:
# Allows you to run this workflow manually from the Actions tab on GitHub.
workflow_dispatch:
# Allow this job to clone the repo and create a page deployment
permissions:
contents: read
pages: write
id-token: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v22
- name: Install dependencies
run: nix develop --command bash -c 'bun i'
- name: Run tests
run: nix develop --command bash -c 'bun run test'