mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 21:57:51 +00:00
d61c300750
change-type: minor
60 lines
1.6 KiB
YAML
60 lines
1.6 KiB
YAML
---
|
|
name: test release
|
|
# https://github.com/product-os/flowzone/tree/master/.github/actions
|
|
inputs:
|
|
json:
|
|
description: "JSON stringified object containing all the inputs from the calling workflow"
|
|
required: true
|
|
secrets:
|
|
description: "JSON stringified object containing all the secrets from the calling workflow"
|
|
required: true
|
|
variables:
|
|
description: "JSON stringified object containing all the variables from the calling workflow"
|
|
required: true
|
|
|
|
# --- custom environment
|
|
NODE_VERSION:
|
|
type: string
|
|
default: '16.x'
|
|
VERBOSE:
|
|
type: string
|
|
default: "true"
|
|
|
|
runs:
|
|
# https://docs.github.com/en/actions/creating-actions/creating-a-composite-action
|
|
using: "composite"
|
|
steps:
|
|
# https://github.com/actions/setup-node#caching-global-packages-data
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ inputs.NODE_VERSION }}
|
|
cache: npm
|
|
|
|
- name: Test release
|
|
shell: bash
|
|
run: |
|
|
set -ea
|
|
|
|
[[ '${{ inputs.VERBOSE }}' =~ on|On|Yes|yes|true|True ]] && set -x
|
|
|
|
if [[ -e package-lock.json ]] || [[ -e npm-shrinkwrap.json ]]; then
|
|
npm ci
|
|
else
|
|
npm i
|
|
fi
|
|
|
|
npm run build
|
|
npm run test
|
|
|
|
- name: Compress custom source
|
|
shell: pwsh
|
|
run: tar -acf ${{ runner.temp }}/custom.tgz .
|
|
|
|
- name: Upload custom artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: custom-${{ github.event.pull_request.head.sha || github.event.head_commit.id }}-${{ runner.os }}-${{ runner.arch }}
|
|
path: ${{ runner.temp }}/custom.tgz
|
|
retention-days: 1
|