-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (35 loc) · 1.05 KB
/
rainix.yaml
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
45
name: Rainix CI
on: [push]
jobs:
rainix:
runs-on: ubuntu-latest
env:
DEPLOYMENT_KEY: ${{ github.ref == 'refs/heads/main' && secrets.PRIVATE_KEY || secrets.PRIVATE_KEY_DEV }}
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v4
- uses: DeterminateSystems/magic-nix-cache-action@v2
- name: Install NodeJS v21
uses: actions/setup-node@v4
with:
node-version: 21
cache: 'npm'
- name: Install Deps
run: nix run .#install
- name: Build Prod
run: npm run build-prod
- name: Build Dev
run: npm run build
- name: Lint
run: npm run lint
# install playwright
- name: Install Playwright
run: npx playwright install
# Run the desktop tests using headless setup
- name: Desktop Extension Test
uses: coactions/setup-xvfb@v1
with:
run: npm run test-desktop
# Run the web extention tests
- name: Web Extension Test
run: npm run test-web