Skip to content

Commit 4c9bbaf

Browse files
authored
Merge pull request #61 from groupe-sii/feature/github-actions
chore: change build to use github actions
2 parents cdddc93 + c172522 commit 4c9bbaf

File tree

3 files changed

+24
-115
lines changed

3 files changed

+24
-115
lines changed

.github/workflows/deploy.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build and Deploy
2+
on:
3+
push:
4+
branches:
5+
- master
6+
permissions:
7+
contents: write
8+
jobs:
9+
build-and-deploy:
10+
concurrency: ci-${{ github.ref }}
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout 🛎️
14+
uses: actions/checkout@v3
15+
16+
- name: Install and Build 🔧
17+
run: |
18+
npm ci
19+
npm run build
20+
21+
- name: Deploy 🚀
22+
uses: JamesIves/github-pages-deploy-action@v4
23+
with:
24+
folder: dist

.travis.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

deploy.js

Lines changed: 0 additions & 100 deletions
This file was deleted.

0 commit comments

Comments
 (0)