mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-19 12:28:43 +00:00
28 lines
499 B
YAML
28 lines
499 B
YAML
name: Node.js CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-18.04
|
|
name: Lint
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '12'
|
|
- run: yarn
|
|
- run: yarn lint
|
|
build:
|
|
runs-on: ubuntu-18.04
|
|
name: Build + Test
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '12'
|
|
- run: yarn
|
|
- run: yarn build
|
|
- run: yarn test
|