ci: Fix docs generation (#2481) #1052
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Release | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js LTS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
check-latest: true | |
- run: npm install --no-package-lock | |
name: Install dependencies | |
- run: npm run test | |
name: Run NPM Test | |
- run: | | |
rm -rf node_modules package-lock.json | |
npm prune --omit=dev --omit=peer --no-package-lock | |
name: Remove dev dependencies and appium peer dependencies | |
- run: npm shrinkwrap --omit=dev --omit=peer | |
name: Create shrinkwrap | |
# "--no-package-lock" prevent adding dev dependencies in the shrinkwrap | |
- run: npm install --only=dev --no-package-lock | |
name: Install dev dependencies for the release | |
- run: npx semantic-release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
name: Release |