Update eslint monorepo to v9.38.0 (#152) #443
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: Run tests | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
| - name: Use Node.js | |
| uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5 | |
| - run: npm i | |
| - run: npm run build | |
| - run: npx pkg-pr-new publish | |
| - run: cd example && npm i && cd .. | |
| - run: npm run typecheck | |
| - run: cd example && npm run lint && cd .. | |
| - run: npm test |