onstar2mqtt/.github/workflows/ci.yml

62 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:
2022-09-17 14:22:58 +00:00
node-version: [18.x]
2020-12-02 19:13:11 +00:00
steps:
- name: Check out the repo
uses: actions/checkout@v3
2020-12-02 19:13:11 +00:00
- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v4
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@v3
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@v2.1.0
2020-12-02 19:23:59 +00:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
2020-12-02 19:23:59 +00:00
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
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
uses: docker/build-push-action@v3
2020-12-02 19:23:59 +00:00
with:
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
2022-09-17 14:22:58 +00:00
labels: ${{ steps.docker_meta.outputs.labels }}