Skip to content

Commit 01054d5

Browse files
init github workflow
Signed-off-by: France Gelasque <france.workmail@gmail.com>
1 parent 1d736fb commit 01054d5

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

.github/workflows/web-build.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Expo Web Build
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v3
15+
16+
- name: Setup Node
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: 18.20
20+
21+
- name: Install dependencies
22+
run: npm ci
23+
24+
- name: Build Expo Web
25+
run: npm run web-build
26+
27+
- name: Upload Artifacts
28+
uses: actions/upload-artifact@v3
29+
with:
30+
name: web-build
31+
path: web-build/

0 commit comments

Comments
 (0)