Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump testomatio/check-tests from stable to master #5879

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ on:
pull_request:
workflow_dispatch:

concurrency: ${{ github.workflow }}-${{ github.ref }}
concurrency: '${{ github.workflow }}-${{ github.ref }}'

permissions:
contents: write

jobs:
docker-lint:
runs-on: ubuntu-latest
Expand All @@ -22,17 +21,19 @@ jobs:
verbose: true
lint:
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0

- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
# uses version from "packageManager" field in package.json

- name: Setup Node.js
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
cache: pnpm
node-version-file: '.node-version'
node-version-file: .node-version

- name: Install Packages
run: |
Expand Down Expand Up @@ -86,12 +87,12 @@ jobs:
- name: Verify Docs
id: verifyDocs
working-directory: ./packages/mermaid
continue-on-error: ${{ github.event_name == 'push' }}
run: pnpm run docs:verify
continue-on-error: "${{ github.event_name == 'push' }}"
run: 'pnpm run docs:verify'

- uses: testomatio/check-tests@0ea638fcec1820cf2e7b9854fdbdd04128a55bd4 # stable
- uses: testomatio/check-tests@e772b3cde2f31f5609e89930043122c51dd0885a
with:
framework: cypress
tests: './cypress/e2e/**/**.spec.js'
token: ${{ secrets.GITHUB_TOKEN }}
tests: ./cypress/e2e/**/**.spec.js
token: '${{ secrets.GITHUB_TOKEN }}'
has-tests-label: true
Loading