chore: update deps & clean up test #4
Workflow file for this run
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
| on: | |
| push: | |
| branches-ignore: | |
| - "master" | |
| name: Run Tests | |
| jobs: | |
| test: | |
| name: run tests | |
| strategy: | |
| matrix: | |
| node: ["24.x"] | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Install playwright webkit | |
| run: npx playwright install-deps webkit | |
| - name: Install browsers | |
| run: npx playwright install | |
| - name: Run tests | |
| run: npm run test |