onstar2mqtt/.github/workflows/ci.yml

57 lines
1.5 KiB
YAML
Raw Normal View History

2020-12-02 19:13:11 +00:00
name: ci
on:
push:
2020-12-02 19:19:46 +00:00
branches: [ main ]
2020-12-02 19:13:11 +00:00
pull_request:
2020-12-02 19:19:46 +00:00
branches: [ main ]
# build weekly for fresh base docker image
schedule:
- cron: '30 4 * * 1'
2020-12-02 19:13:11 +00:00
jobs:
test_build_push:
name: ci - test, build, push
2020-12-02 19:13:11 +00:00
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Docker meta
id: docker_meta
uses: crazy-max/ghaction-docker-meta@v1
with:
images: michaelwoods/onstar2mqtt
tag-sha: true
2020-12-02 21:18:46 +00:00
tag-schedule: weekly
2020-12-02 19:13:11 +00:00
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.3
2020-12-02 19:13:11 +00:00
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
2020-12-02 19:23:59 +00:00
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
if: github.event_name != 'pull_request'
2020-12-02 19:23:59 +00:00
uses: docker/login-action@v1
with:
2020-12-02 19:30:02 +00:00
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
2020-12-02 21:18:46 +00:00
- name: Push to DockerHub
2020-12-02 19:23:59 +00:00
uses: docker/build-push-action@v2
with:
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}