Skip to content

Commit 77ab2d2

Browse files
authoredApr 29, 2024
feat: onboarding flow (#569)
1 parent 0508f77 commit 77ab2d2

File tree

117 files changed

+4356
-292
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+4356
-292
lines changed
 

‎.env.example

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
VITE_API_BASE_URL=
22
VITE_FRONTEND_VERSION=
3+
VITE_FEATURE_OS_KEY=

‎.github/workflows/unit-tests.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Unit Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- dev
8+
pull_request:
9+
branches:
10+
- main
11+
- dev
12+
workflow_dispatch:
13+
14+
jobs:
15+
test:
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- name: Checkout Repository
20+
uses: actions/checkout@v2
21+
22+
- name: Set up Node.js
23+
uses: actions/setup-node@v2
24+
with:
25+
node-version: "20"
26+
27+
- name: Install pnpm
28+
uses: pnpm/action-setup@v2
29+
with:
30+
version: latest
31+
32+
- name: Install project dependencies
33+
run: pnpm install --frozen-lockfile
34+
35+
- name: Run Unit Tests
36+
run: pnpm test:unit

0 commit comments

Comments
 (0)
Please sign in to comment.