chore(deps): update dependencies #2
This file contains 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-e2e | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- name: Setup Node.js ⚙️ - Cache dependencies ⚡ - Install dependencies 🔧 | |
uses: ./.github/workflows/actions/setup_node-cache_dep-install_dep | |
- name: Install Playwright Browsers | |
run: npx playwright install --with-deps | |
- name: Test E2E 🧪 | |
run: npx playwright test | |
# - name: Test E2E 🧪 | |
# run: npm run test-e2e | |
# - name: Upload report 📈 | |
# uses: codecov/codecov-action@v3 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
# fail_ci_if_error: true |