Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianCassayre committed Aug 5, 2023
1 parent 4c03bff commit 45479b6
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,32 @@ on:
push:
branches:
- master
- develop

jobs:
deploy:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Gramps
run: sudo apt-get install -y gramps
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Clone data
uses: actions/checkout@v3
with:
repository: cassayre/genealogy
path: genealogy
ssh-key: ${{ secrets.GENEALOGY_DEPLOY_KEY }}
- name: Convert Gedcom
run: npm run update:gedcom
- name: Compile data
run: npm run update:compile
- name: Build
run: npm run build
- name: Lint
Expand Down

0 comments on commit 45479b6

Please sign in to comment.