Skip to content

Commit 7b8f831

Browse files
authored
Merge pull request #78 from asciidoctor/gh-actions-ui
Enable GitHub Actions
2 parents 9e0b922 + 59a13ea commit 7b8f831

File tree

2 files changed

+25
-12
lines changed

2 files changed

+25
-12
lines changed

.github/workflows/build.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
node-version:
11+
- 12.x
12+
- 13.x
13+
steps:
14+
- uses: actions/checkout@v1
15+
- name: Set up Node ${{ matrix.node-version }}
16+
uses: actions/setup-node@v1
17+
with:
18+
node-version: ${{ matrix.node-version }}
19+
- name: Install dependencies
20+
run: |
21+
npm ci
22+
- name: Lint, build and test
23+
run: |
24+
npm run lint
25+
npm t

.travis.yml

-12
This file was deleted.

0 commit comments

Comments
 (0)