Skip to content

chore(deps-dev): bump expect from 29.2.1 to 29.7.0 #1080

chore(deps-dev): bump expect from 29.2.1 to 29.7.0

chore(deps-dev): bump expect from 29.2.1 to 29.7.0 #1080

Workflow file for this run

name: CI
on:
[push, pull_request, workflow_dispatch]
jobs:
tests:
uses: ljharb/actions/.github/workflows/node.yml@a840bfaa7e24d260a9f451baa97ca172fdb327af

Check failure on line 7 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

error parsing called workflow ".github/workflows/test.yml" -> "ljharb/actions/.github/workflows/node.yml@a840bfaa7e24d260a9f451baa97ca172fdb327af" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
with:
range: '>= 0.8'
type: majors
build-command: npm run build:tests
build-output-dir: __tests-built__,lib
command: npm run tests-built
flow:
name: Flow type checking
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ljharb/actions/node/install@a840bfaa7e24d260a9f451baa97ca172fdb327af
with:
use-npm-ci: true
- name: Flow type check
run: npx flow
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ljharb/actions/node/install@a840bfaa7e24d260a9f451baa97ca172fdb327af
with:
use-npm-ci: true
- name: Run ESLint
run: npm run lint
diff-breakUpAriaJSON:
name: Compare JSON to src output
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ljharb/actions/node/install@a840bfaa7e24d260a9f451baa97ca172fdb327af
with:
use-npm-ci: true
- name: Run diff check for the breakUpAriaJSON script
run: node scripts/breakUpAriaJSON.js && git diff --exit-code -- src
finisher:
name: all checks
needs: [tests, flow, eslint, diff-breakUpAriaJSON]
runs-on: ubuntu-latest
steps:
- run: true