
* Prepare to release to 0.22.1 * Revert chart verifier update for now * Remove unused jobs from CircleCI config
20 lines
449 B
YAML
20 lines
449 B
YAML
name: Setup common testing tools
|
|
description: Install bats and python-yq
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '16'
|
|
- run: npm install -g bats@${BATS_VERSION}
|
|
shell: bash
|
|
env:
|
|
BATS_VERSION: '1.8.2'
|
|
- run: bats -v
|
|
shell: bash
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.10'
|
|
- run: pip install yq
|
|
shell: bash
|