Smoke test #169
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |