onstar2mqtt/.github/workflows/ci.yml

61 lines
1.6 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.4.0
2020-12-02 19:13:11 +00:00
- name: Docker meta
id: docker_meta
2021-06-11 00:23:02 +00:00
uses: docker/metadata-action@v3
with:
images: michaelwoods/onstar2mqtt
2021-06-11 14:35:58 +00:00
flavor: |
latest=true
2021-06-11 00:23:02 +00:00
tags: |
2021-06-11 14:28:53 +00:00
type=ref,event=branch
2021-06-11 00:23:02 +00:00
type=schedule,pattern=weekly
2020-12-02 19:13:11 +00:00
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.5.0
2020-12-02 19:13:11 +00:00
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
2021-06-11 03:44:31 +00:00
- run: npm run lint
2020-12-02 19:13:11 +00:00
- run: npm test
2020-12-02 19:23:59 +00:00
- name: Set up QEMU
uses: docker/setup-qemu-action@v1.2.0
2020-12-02 19:23:59 +00:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
if: github.event_name != 'pull_request'
2021-06-11 00:23:02 +00:00
uses: docker/login-action@v1
2020-12-02 19:23:59 +00:00
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
2021-06-11 00:23:02 +00:00
uses: docker/build-push-action@v2
2020-12-02 19:23:59 +00:00
with:
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}