Skip to content

build: Add concurrently to devDependencies #2

build: Add concurrently to devDependencies

build: Add concurrently to devDependencies #2

Workflow file for this run

name: Unit tests (elm-test)
on:
workflow_call:
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Enable corepack
run: corepack enable
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: elm-test
run: pnpm exec elm-test
- name: 'notify vercel'
if: always()
uses: 'vercel/repository-dispatch/actions/status@v1'
with:
name: Vercel - parked-domain: unit-test

Check failure on line 29 in .github/workflows/unit-test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/unit-test.yml

Invalid workflow file

You have an error in your yaml syntax on line 29
token: ${{ secrets.GITHUB_TOKEN }}
sha: ${{ github.event.client_payload.git.sha || github.sha }}
state: ${{ job.status == 'success' && 'success' || job.status == 'failure' && 'failure' || 'error' }}