Skip to content

Merge pull request #24 from chadluo/4.7-material- #151

Merge pull request #24 from chadluo/4.7-material-

Merge pull request #24 from chadluo/4.7-material- #151

Workflow file for this run

name: Build Test Deploy
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "latest"
cache: "npm"
- name: Install dependencies
run: npm ci --loglevel info
- name: Install Playwright
run: npx playwright install --with-deps
- name: build app
run: npm run build
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v3
if: failure()
with:
name: playwright-test-results
path: test-results/
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: public