-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (52 loc) · 1.57 KB
/
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
45
46
47
48
49
50
51
52
name: ci
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup FluentCI
uses: fluentci-io/setup-fluentci@v5
- name: Client Lint
run: |
fluentci run --wasm bun run lint
working-directory: src/client
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Server Lint
run: |
fluentci run --wasm bun run lint
working-directory: src/server
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: 🧪 Client Unit Tests
run: |
fluentci run --wasm bun run test
working-directory: src/client
env:
CI: true
NODE_ENV: test
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: 🧪 Server Unit Tests
run: |
fluentci run --wasm bun run test
working-directory: src/server
env:
CI: true
NODE_ENV: test
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: 🔄 E2E Tests
run: |
cd src/client && fluentci run --wasm cypress install && cd ../.. && fluentci run --wasm . e2e
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: 🔄 E2E Server
run: |
fluentci run --wasm postgres start
pkgx psql --host=localhost -d postgres -U `whoami` -c 'CREATE DATABASE test;'
fluentci run --wasm . server_e2e
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}