-
-
Notifications
You must be signed in to change notification settings - Fork 913
44 lines (36 loc) · 946 Bytes
/
opensaas-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Open SaaS CI
on:
push:
branches:
- main
- playwright-tests
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v3
- name: Install Wasp
run: curl -sSL https://get.wasp-lang.dev/installer.sh | sh -s
- name: Docker setup
uses: docker/setup-buildx-action@v1
- name: Cache Node Modules
uses: actions/cache@v3
with:
path: ~/.npm
key: node-modules-${{ hashFiles('app/package-lock.json') }}
- name: Install Node.js dependencies
run: |
cd app
npm ci
- name: Set up Playwright
run: |
cd app
npx playwright install --with-deps
- name: Run Playwright tests
run: |
cd app
DEBUG=pw:webserver npx playwright test tests/whatever.spec.ts