Skip to content

feat(.github): introduce updated release strategy #342

feat(.github): introduce updated release strategy

feat(.github): introduce updated release strategy #342

Workflow file for this run

name: Node.js CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: 'setup python'
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: npm install
- name: Copy Sample CLI Mocker to bin folder
run: pip3 install pyyaml && cp src/lib/shell/sampler /usr/local/bin/sampler && chmod +x /usr/local/bin/sampler
- name: Run lint
run: npm run lint
- name: Run tests
run: npm run test --silent