Skip to content

Commit

Permalink
Migrate continuous integration from travis to github actions
Browse files Browse the repository at this point in the history
- add github-actions' build.yml
- remove travis build
- update README badge
- link to "Lobid's gatsby starter" in the README

See #433
  • Loading branch information
dr0i committed Jan 22, 2021
1 parent ca265b1 commit 04e1d25
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 10 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build

on:
push
env:
NODE_VERSION: '14.15.3'

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE_VERSION }}
- run: |
npm install -g gatsby
cd gatsby/lobid/
npm ci
gatsby build
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

4 changes: 3 additions & 1 deletion README.textile
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
h1. Lobid

"!https://github.com/hbz/lobid/workflows/Build/badge.svg?branch=master!":https://github.com/hbz/lobid/actions?query=workflow%3ABuild

Linking Open Bibliographic Data.

This is only the repo of the landing page of https://lobid.org/ and some sub-sites created with _gatsby_.
This is only the repo of the landing page of https://lobid.org/ and some sub-sites created with _gatsby_ (see "Lobid's gatsby starter":https://github.com/hbz/lobid/tree/master/gatsby/lobid ).

For the repos with the software implementations, see:

Expand Down

0 comments on commit 04e1d25

Please sign in to comment.