Skip to content

Smoke test

Smoke test #169

Workflow file for this run

name: Smoke test
on:
schedule:
- cron: '0 0 * * SUN'
workflow_dispatch:
release:
types: [published]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node
uses: actions/setup-node@v4
with:
cache: 'pnpm'
node-version-file: '.nvmrc'
- run: |
pnpm install
pnpm run build
- run: pnpm link
working-directory: ./dist
- run: pnpm link eslint-plugin-testing-library
- uses: AriPerkkio/eslint-remote-tester-run-action@v4
with:
issue-title: 'Results of weekly scheduled smoke test'
eslint-remote-tester-config: tests/eslint-remote-tester.config.js