Smoke test #216
  
    
      This file contains hidden or 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@v5 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Use Node | |
| uses: actions/setup-node@v6 | |
| 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 |