Skip to content

ci: fix artifacts version #162

ci: fix artifacts version

ci: fix artifacts version #162

Workflow file for this run

name: test
on:
push:
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Yarn Classic
run: npm install -g yarn@1
- run: yarn install --frozen-lockfile
- run: yarn playwright install --with-deps
- run: yarn test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-artifacts
path: |
playwright-report/
test-results/
retention-days: 10