This repository was archived by the owner on Jan 12, 2026. It is now read-only.
chore: Remove unneeded code #2148
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
| name: Test | |
| on: | |
| push: | |
| branches-ignore: | |
| - main | |
| paths: | |
| - packages/** | |
| jobs: | |
| test: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2.3.1 | |
| - name: Use Node.js 18.x | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: "18.x" | |
| - name: Install and Test | |
| run: | | |
| npm i @nx/nx-linux-x64-gnu | |
| npm clean-install | |
| npx playwright install chromium --with-deps | |
| npm run-script test |