Skip to content

Cause a change for testing #4

Cause a change for testing

Cause a change for testing #4

name: Publish cht-deploy to npm
on:
push:
branches:
- '**'
paths:
- 'scripts/deploy/**'
jobs:
publish-cht-deploy:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./scripts/deploy
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies
run: npm ci
- name: Run tests
if: github.ref != 'refs/heads/master'
run: npx mocha --no-config 'tests/*.js'
- name: Semantic Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release --config ./scripts/deploy/.releaserc.json