Skip to content

Remove temporary cron change. Back to original #17

Remove temporary cron change. Back to original

Remove temporary cron change. Back to original #17

name: Docker Image Build & Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
NODE: [12, 14, 16, 18]
steps:
- uses: actions/checkout@v2
- name: Insert node version into Dockerfile
run: sed -i "s/{VERSION}/${{ matrix.NODE }}/g" ./Dockerfile
- name: Build the Docker image
run: docker build -t stocard/node:${{ matrix.NODE }} .