Skip to content

Merge pull request #65 from contacto-io/bug/CNTO-7295-INACTIVITY-UX-R… #93

Merge pull request #65 from contacto-io/bug/CNTO-7295-INACTIVITY-UX-R…

Merge pull request #65 from contacto-io/bug/CNTO-7295-INACTIVITY-UX-R… #93

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, 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: Node.js CI
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v1
- name: 'Automated Version Bump'
uses: 'phips28/gh-action-bump-version@master'
env:
GITHUB_TOKEN: ${{ secrets.WRITE_TOKEN }}
with:
tag-prefix: 'v'
commit-message: 'Automated Commit by CI: bumps version to {{version}} [skip ci]'
skip-commit: 'true'
skip-tag: 'true'
skip-push: 'true'
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run deploy-storybook -- --ci
env:
GH_TOKEN: ${{ github.actor }}:${{ secrets.GH_TOKEN }}