mirror of https://github.com/status-im/codimd.git
Merge pull request #1694 from hackmdio/chore/github-actions
Run CI with GitHub Actions
This commit is contained in:
commit
282fcab4f7
|
@ -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
.travis.yml
32
.travis.yml
|
@ -1,32 +0,0 @@
|
||||||
language: node_js
|
|
||||||
|
|
||||||
node_js:
|
|
||||||
- "lts/dubnium"
|
|
||||||
- "11"
|
|
||||||
- "12"
|
|
||||||
|
|
||||||
dist: xenial
|
|
||||||
cache: npm
|
|
||||||
|
|
||||||
matrix:
|
|
||||||
fast_finish: true
|
|
||||||
include:
|
|
||||||
- node_js: lts/dubnium
|
|
||||||
allow_failures:
|
|
||||||
- node_js: "11"
|
|
||||||
- node_js: "12"
|
|
||||||
|
|
||||||
script:
|
|
||||||
- npm run test:ci
|
|
||||||
- npm run build
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
include:
|
|
||||||
- stage: doctoc-check
|
|
||||||
install: npm install -g doctoc
|
|
||||||
if: type = pull_request OR branch = master
|
|
||||||
script:
|
|
||||||
- cp README.md README.md.orig
|
|
||||||
- npm run doctoc
|
|
||||||
- diff -q README.md README.md.orig
|
|
||||||
node_js: lts/carbon
|
|
Loading…
Reference in New Issue