Skip to content

chore(deps-dev): bump follow-redirects from 1.15.3 to 1.15.6 #463

chore(deps-dev): bump follow-redirects from 1.15.3 to 1.15.6

chore(deps-dev): bump follow-redirects from 1.15.3 to 1.15.6 #463

Workflow file for this run

name: playwright
on:
push:
branches:
- main
pull_request: {}
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 🤝 Set Node version from .nvmrc
run: echo NVMRC=`cat .nvmrc` >> $GITHUB_ENV
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ env.NVMRC }}
- name: 📥 Download deps
uses: bahmutov/npm-install@v1
- name: 🌎 Install Playwright Browsers
run: npx playwright install --with-deps
- name: ▶️ Build the dist folder
run: npm run build
- name: ▶️ Run Playwright tests
run: npm run test:e2e
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30