Skip to content
This repository has been archived by the owner on Apr 29, 2021. It is now read-only.

Commit

Permalink
Use GitHub Actions for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sheepsteak committed Oct 2, 2019
1 parent c512490 commit bccc049
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci-node-10.yml
@@ -0,0 +1,25 @@
name: CI on Node 10

on: [push]

jobs:
test:
name: Test on Node 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: docker://node:10-alpine
name: Install
with:
entrypoint: yarn
args: install --pure-lockfile --audit
- uses: docker://node:10-alpine
name: Lint
with:
entrypoint: yarn
args: lint
- uses: docker://node:10-alpine
name: Test
with:
entrypoint: yarn
args: test
25 changes: 25 additions & 0 deletions .github/workflows/ci-node-12.yml
@@ -0,0 +1,25 @@
name: CI on Node 12

on: [push]

jobs:
test:
name: Test on Node 12
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: docker://node:12-alpine
name: Install
with:
entrypoint: yarn
args: install --pure-lockfile --audit
- uses: docker://node:12-alpine
name: Lint
with:
entrypoint: yarn
args: lint
- uses: docker://node:12-alpine
name: Test
with:
entrypoint: yarn
args: test
25 changes: 25 additions & 0 deletions .github/workflows/ci-node-8.yml
@@ -0,0 +1,25 @@
name: CI on Node 8

on: [push]

jobs:
test:
name: Test on Node 8
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: docker://node:8-alpine
name: Install
with:
entrypoint: yarn
args: install --pure-lockfile --audit
- uses: docker://node:8-alpine
name: Lint
with:
entrypoint: yarn
args: lint
- uses: docker://node:8-alpine
name: Test
with:
entrypoint: yarn
args: test

0 comments on commit bccc049

Please sign in to comment.