Skip to content

Added the feature to confirm run of terminal commands. #47

Added the feature to confirm run of terminal commands.

Added the feature to confirm run of terminal commands. #47

Workflow file for this run

name: Command Launcher CI
on:
push:
jobs:
test:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install Node.js
uses: actions/setup-node@master
with:
node-version: 20
- run: npm install -g yarn
- run: yarn install
- run: yarn compile
- run: xvfb-run -a yarn test
if: runner.os == 'Linux'
- run: yarn test
if: runner.os != 'Linux'
coverage:
needs: [test]
name: coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install Node.js
uses: actions/setup-node@master
with:
node-version: 20
- run: npm install -g yarn
- run: yarn install
- run: yarn compile
- uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: xvfb-run -a yarn coverage
coverageLocations: ${{ github.workspace }}/coverage/lcov.info:lcov