Skip to content

Fix typo in README.md #18

Fix typo in README.md

Fix typo in README.md #18

Workflow file for this run

name: test-testdata
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-testdata:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: 'npm'
cache-dependency-path: testdata/package-lock.json
- run: npm ci
working-directory: testdata
- name: check repository is not dirty
run: "[[ -z $(git status --porcelain) ]]"
- name: show diff
if: ${{ failure() }}
run: git status --porcelain