Skip to content

Commit

Permalink
+
Browse files Browse the repository at this point in the history
  • Loading branch information
owlsua committed Apr 23, 2024
1 parent b23283f commit 4615f4c
Showing 1 changed file with 28 additions and 7 deletions.
35 changes: 28 additions & 7 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,39 @@
name: Playwright Tests
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Node.js CI

on:
push:
# branches: [main]
pull_request:
# branches: [main]

jobs:
test:
timeout-minutes: 60
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Install dependencies
node-version: ${{ matrix.node-version }}
- name: Intall Deps
run: npm ci
- name: ESLint
run: npm run lint
- name: Prettier
run: npm run pretty-quick-check-branch
- name: Test
run: npm test -- --watchAll=false
- name: Build
run: npm run build --if-present
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
Expand Down

0 comments on commit 4615f4c

Please sign in to comment.