Skip to content

Commit ab05827

Browse files
author
eoin.jenkins
committed
chore: change build to use github actions
1 parent cdddc93 commit ab05827

File tree

2 files changed

+24
-15
lines changed

2 files changed

+24
-15
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.

0 commit comments

Comments
 (0)