Skip to content

Merge pull request #35 from edx/dkaplan1/allow-stricter-masking #12

Merge pull request #35 from edx/dkaplan1/allow-stricter-masking

Merge pull request #35 from edx/dkaplan1/allow-stricter-masking #12

Workflow file for this run

name: Release CI
on:
push:
branches:
- master
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build
- name: Release to npm/Github
run: npx semantic-release@22
env:
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }}