Skip to content

Support url

Support url #79

Workflow file for this run

name: 'Unit Tests'
on:
workflow_dispatch:
push:
branches-ignore: [ gh-pages ]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
permissions:
# Required to checkout the code
contents: read
# Required to put a comment into the pull-request
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
uses: ./.github/actions/install-dependencies
- name: 'Test'
run: pnpm test