github action and metadata files

This commit is contained in:
Michael Woods 2020-12-02 14:13:11 -05:00
parent d095287158
commit 5a394ce204
4 changed files with 65 additions and 0 deletions

3
.dockerignore Normal file
View File

@ -0,0 +1,3 @@
.nyc_output
test
node_modules

7
.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,7 @@
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

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

@ -0,0 +1,37 @@
name: ci
on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]
jobs:
test_build_push:
name: Test and Build & Push Docker image
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Push to Docker Hub
uses: docker/build-push-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: michaelwoods/onstar2mqtt
tags: michaelwoods/onstar2mqtt:latest
- run: npm ci
- run: npm run build --if-present
- run: npm test

18
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: Publish Docker image
on:
release:
types: [published]
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Push to Docker Hub
uses: docker/build-push-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: michaelwoods/onstar2mqtt
tag_with_ref: true