THROW_EXECUTE_ERROR on CI #848
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| - run: yarn | |
| - run: yarn lint | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| - run: yarn | |
| - run: yarn test | |
| test-run: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/cache@v4 | |
| with: | |
| path: repositories | |
| key: v2-${{ hashFiles('repositories.json') }} | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "24" | |
| - run: yarn | |
| - run: yarn execute "RUN https://pkg.pr.new/prettier/prettier@main VS latest on prettier/prettier" |