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 f7875cf
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,33 @@ 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
ref: master
path: genealogy
ssh-key: ${{ secrets.SSH_PRIVATE_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 f7875cf

Please sign in to comment.