2022-01-30 12:44:32 +01:00
|
|
|
name: Tests and push apps
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
style:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@master
|
|
|
|
|
|
|
|
- name: Setup node.js
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: '16'
|
|
|
|
|
|
|
|
- name: Install dependencies
|
2022-06-12 17:16:24 +02:00
|
|
|
uses: borales/actions-yarn@v3.0.0
|
2022-01-30 12:44:32 +01:00
|
|
|
with:
|
|
|
|
cmd: install
|
|
|
|
|
|
|
|
- name: Check code formatting
|
2022-06-12 17:16:24 +02:00
|
|
|
uses: borales/actions-yarn@v3.0.0
|
2022-01-30 12:44:32 +01:00
|
|
|
with:
|
|
|
|
cmd: prettier --check
|
|
|
|
|
|
|
|
- name: Check code linting
|
2022-06-12 17:16:24 +02:00
|
|
|
uses: borales/actions-yarn@v3.0.0
|
2022-01-30 12:44:32 +01:00
|
|
|
with:
|
|
|
|
cmd: lint
|
|
|
|
|
|
|
|
dashboard:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@master
|
|
|
|
|
|
|
|
- name: Setup node.js
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: '16'
|
|
|
|
|
|
|
|
- name: Install dependencies
|
2022-06-12 17:16:24 +02:00
|
|
|
uses: borales/actions-yarn@v3.0.0
|
2022-01-30 12:44:32 +01:00
|
|
|
with:
|
|
|
|
cmd: install
|
|
|
|
|
|
|
|
- name: Check code typing
|
2022-06-12 17:16:24 +02:00
|
|
|
uses: borales/actions-yarn@v3.0.0
|
2022-01-30 12:44:32 +01:00
|
|
|
with:
|
|
|
|
cmd: typecheck
|
|
|
|
|
|
|
|
- name: Run unit tests
|
2022-06-12 17:16:24 +02:00
|
|
|
uses: borales/actions-yarn@v3.0.0
|
2022-01-30 12:44:32 +01:00
|
|
|
with:
|
|
|
|
cmd: test --coverage
|
|
|
|
|
|
|
|
- name: Codecov
|
|
|
|
uses: codecov/codecov-action@v2
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
fail_ci_if_error: true
|
|
|
|
verbose: true
|
|
|
|
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [style, dashboard]
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@master
|
|
|
|
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
2022-03-05 19:13:21 +01:00
|
|
|
|
2022-01-30 12:44:32 +01:00
|
|
|
- name: Login to DockerHub
|
2022-03-05 19:13:21 +01:00
|
|
|
uses: docker/login-action@v1
|
2022-01-30 12:44:32 +01:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
|
2022-03-05 19:13:21 +01:00
|
|
|
- name: Login to GitHub Container Registry
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2022-01-30 12:44:32 +01:00
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
push: true
|
|
|
|
platforms: linux/amd64,linux/arm64/v8,linux/arm/v7
|
2022-03-05 19:13:21 +01:00
|
|
|
tags: |
|
|
|
|
phntxx/dashboard:latest
|
|
|
|
ghcr.io/phntxx/dashboard:latest
|