chore(deps): update dependency tsx to v4.23.11 (#3087) #7430
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' | |
| tags: | |
| - 'v*' | |
| paths-ignore: | |
| - data/words.ljson | |
| - data/words.idx | |
| - CHANGELOG.md | |
| pull_request: | |
| env: | |
| # Pin until Node 24.16.0's extract-zip/yauzl regression is fixed. It can | |
| # leave WebdriverIO's ChromeDriver download partially extracted in CI: | |
| # https://github.com/nodejs/node/issues/63487 | |
| NODE_VERSION: 24.15.0 | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: Test | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v6 | |
| with: | |
| version: 11 | |
| - name: Setup node | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| cache: pnpm | |
| # Check the build works. No need to run the build:edge target since it's | |
| # almost identical to build:chrome | |
| - name: Build | |
| run: |- | |
| pnpm install --frozen-lockfile | |
| pnpm build:firefox | |
| pnpm build:chrome | |
| pnpm build:thunderbird | |
| - name: Run tests | |
| env: | |
| CI: true | |
| run: pnpm test | |
| - name: Upload any failure artifacts | |
| uses: actions/upload-artifact@v7 | |
| if: always() | |
| with: | |
| name: test-screenshots | |
| path: '**/__screenshots__/**/*.png' | |
| if-no-files-found: ignore | |
| retention-days: 20 | |
| # Check packaging doesn't error. Again, no need to worry about the | |
| # package:edge target. | |
| - name: Package | |
| run: |- | |
| pnpm package:firefox | |
| pnpm package:chrome | |
| - name: Verify cosmos setup | |
| run: pnpm cosmos-export | |
| lint: | |
| runs-on: ubuntu-latest | |
| name: Lint | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v6 | |
| with: | |
| version: 11 | |
| - name: Setup node | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| cache: pnpm | |
| - name: Install | |
| run: pnpm install --frozen-lockfile | |
| - name: Lint | |
| run: pnpm oxlint --type-aware scripts src tests "*.{cjs,js,ts}" | |
| - name: Check formatting | |
| run: pnpm prettier --check _locales css scripts src tests "*.{js,json,md,ts}" | |
| - name: knip | |
| run: pnpm knip |