Skip to content

add npm ci step back in now that I know what it is #60

add npm ci step back in now that I know what it is

add npm ci step back in now that I know what it is #60

Workflow file for this run

name: Release
on:
push:
branches:
- main
- arm-support
jobs:
release:
runs-on: ubuntu-latest
if: (!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci'))
steps:
- uses: actions/checkout@v3
with:
fetch-tags: true
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Cache node modules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- run: npm ci
- run: npm run build
- name: Build multi-arch image
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
push: false
tags: bull-monitor:latest
# - name: Create Release
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# IMAGE: 'bull-monitor:latest'
# run: |
# npx auto shipit
# - name: Docker Hub Description
# uses: peter-evans/dockerhub-description@v3
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_PASSWORD }}
# repository: ejhayes/nodejs-bull-monitor
# short-description: 'All in one bull monitoring and reporting utility'