-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (36 loc) · 1.17 KB
/
package_npm_code.yml
File metadata and controls
41 lines (36 loc) · 1.17 KB
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
name: docker image build
on:
workflow_call:
inputs:
pinned_image:
type: string
required: true
jobs:
package_npm_code:
runs-on: ubuntu-22.04
container:
image: ${{ inputs.pinned_image }}
options: --user 1001:1001 --group-add 128
defaults:
run:
shell: bash
steps:
- name: copy .tool-versions
run: |
cp /home/vscode/.tool-versions "$HOME/.tool-versions"
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
ref: ${{ env.BRANCH_NAME }}
- name: Install dependencies
run: |
make install
- name: Package code
run: |
make package
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
name: Upload packaged code
with:
name: nhsdigital-eps-cdk-constructs-1.0.0.tgz
path: |
lib/nhsdigital-eps-cdk-constructs-1.0.0.tgz