Skip to content

docs: Update gsmVoice args (#607) #128

docs: Update gsmVoice args (#607)

docs: Update gsmVoice args (#607) #128

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: lts/*
check-latest: true
- run: npm install
name: Install dependencies
- run: npm run test
name: Run NPM Test
- run: |
rm -rf package-lock.json
npm prune --production
rm -rf node_modules/appium
name: Remove dev dependencies and appium peer dependencies
- run: npm shrinkwrap
name: Create shrinkwrap
- run: npm install --only=dev
name: Install dev dependencies for the release
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
name: Release