-
-
Notifications
You must be signed in to change notification settings - Fork 5
46 lines (46 loc) · 1.31 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Node.js Builds
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- node-version: 16.x
- node-version: 18.x
status: "LTS"
- node-version: 20.x
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: |
npm install
npm run build
- name: Package
run: npm pack
- name: Test
run: npm run nyc-ci
- name: Login to DockerHub
uses: docker/login-action@v2
if: ${{ matrix.status == 'LTS' && github.ref == 'refs/heads/master' }}
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push to DockerHub
id: docker_build
uses: docker/build-push-action@v4
if: ${{ matrix.status == 'LTS' && github.ref == 'refs/heads/master' }}
with:
context: .
push: true
tags: rcjsuen/dockerfile-utils:latest
- name: Coveralls
uses: coverallsapp/github-action@master
if: ${{ matrix.status == 'LTS' && github.ref == 'refs/heads/master' }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}