Skip to content

Bump cross-spawn from 7.0.5 to 7.0.6 (#33) #100

Bump cross-spawn from 7.0.5 to 7.0.6 (#33)

Bump cross-spawn from 7.0.5 to 7.0.6 (#33) #100

Workflow file for this run

name: Test
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Set up NodeJS
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: |
npm ci
npx playwright install --with-deps
- name: Run tests
env:
API_KEY: ${{ secrets.API_KEY }}
REACT_APP_LOCAL: "yes"
run: npm run test
- name: Show failed screenshots
uses: actions/upload-artifact@v4
if: failure()
with:
name: playwright-screenshots
path: test-results
- name: Show failed report
uses: actions/upload-artifact@v4
if: failure()
with:
name: playwright-report
path: playright-report
- name: Test ESLint
run: npx eslint