Test workflow
Seto Elkahfi committed
Aug 9, 2023 at 15:35 UTC
3f7684924444b3af8307a61e9be3d417e77362a6
1 file changed
+17
.github/workflows/deploy.yml
new
+17
@@ -0,0 +1,17 @@
1
+name: Deploy
2
+
3
+on: push
4
+
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Checkout
10
+ uses: actions/checkout@v3
11
+ - name: Set the correct Node version using nvm
12
+ shell: bash -l {0}
13
+ run: nvm install
14
+ - name: Install Dependencies
15
+ run: npm install
16
+ - name: Build
17
+ run: npm run build
\ No newline at end of file