18 lines
396 B
YAML
18 lines
396 B
YAML
name: Test
|
|
run-name: Test?
|
|
on: [push]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
container: mcr.microsoft.com/playwright:v1.48.1-jammy
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- env: NODE_OPTIONS=--max-old-space-size=8192
|
|
run: |
|
|
npm install
|
|
npm run test
|
|
npx playwright install-deps
|
|
npx playwright install
|
|
npx playwright test
|