Skip to content

Initial commit: ged2json.com GEDCOM to JSON converter #1

Initial commit: ged2json.com GEDCOM to JSON converter

Initial commit: ged2json.com GEDCOM to JSON converter #1

Workflow file for this run

name: Test
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Build
run: npm run build