Skip to content

Merge pull request #26 from ezeaniiandrew/feat/add-overlay-color-option #71

Merge pull request #26 from ezeaniiandrew/feat/add-overlay-color-option

Merge pull request #26 from ezeaniiandrew/feat/add-overlay-color-option #71

Workflow file for this run

# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Release CI
on:
push:
branches: [master, next]
jobs:
release:
name: Release
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.12.0]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build release
run: npm run build
# - name: Run tests
# run: npm test
- name: Release
run: npm run semantic-release
env:
CI: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}