mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-22 05:48:48 +00:00
17 lines
No EOL
266 B
YAML
17 lines
No EOL
266 B
YAML
name: Node.js CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-18.04
|
|
name: Test
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '12'
|
|
- run: yarn
|
|
- run: yarn test |