Adding initial ci.yml workflow

This commit is contained in:
Borales 2019-10-13 22:37:02 +02:00
parent 7f2a916727
commit 8b95fae89c
No known key found for this signature in database
GPG Key ID: CDC05EA9067B0EB5

25
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: CI
on: [push, pull_request]
jobs:
run:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v1
with:
node-version: 12
- name: Docker Lint
uses: docker://replicated/dockerfilelint
with:
args: Dockerfile
- name: Shell Lint
uses: actions/bin/shellcheck@master
with:
args: entrypoint.sh
- name: Test
uses: actions/bin/bats@master
with:
args: test/*.bats