Skip to content

Commit

Permalink
Merge pull request #1694 from hackmdio/chore/github-actions
Browse files Browse the repository at this point in the history
Run CI with GitHub Actions
  • Loading branch information
a60814billy authored Jun 16, 2021
2 parents 8c20d9f + dcfdb01 commit 282fcab
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 32 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: 'Test and Build'

on:
push:
pull_request:
workflow_dispatch:

jobs:
test-and-build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]

steps:
- uses: actions/checkout@v2

- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- uses: actions/setup-node@v2
name: Use Node.js ${{ matrix.node-version }}
with:
node-version: ${{ matrix.node-version }}
check-latest: true

- run: npm ci
- run: npm run test:ci
- run: npm run build

doctoc:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master' || github.event.pull_request

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
name: Use Node.js 12
with:
node-version: 12
check-latest: true
- name: Install doctoc-check
run: |
npm install -g doctoc
cp README.md README.md.orig
npm run doctoc
diff -q README.md README.md.orig
32 changes: 0 additions & 32 deletions .travis.yml

This file was deleted.

0 comments on commit 282fcab

Please sign in to comment.