forked from steemit/steem-js
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (40 loc) · 894 Bytes
/
build.yml
File metadata and controls
42 lines (40 loc) · 894 Bytes
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
name: run-test-unit
on:
push:
branches:
- 'master'
pull_request:
types: [opened, reopened, synchronize]
workflow_dispatch:
jobs:
node18:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Show Node and NPM version
run: |
node --version
npm --version
-
name: Verify package.json
run: cat package.json
-
name: Build to run test unit
uses: docker/build-push-action@v4
with:
context: .
file: node-18.dockerfile
push: false
tags: test
no-cache: true
build-args: |
NODE_ENV=development