Skip to content

BREAKING CHANGE: Migrate to Jest and Webpack to be more compatible wi… #4

BREAKING CHANGE: Migrate to Jest and Webpack to be more compatible wi…

BREAKING CHANGE: Migrate to Jest and Webpack to be more compatible wi… #4

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release:
name: Release
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: Brightspace/third-party-actions@actions/checkout
with:
persist-credentials: false
- name: Setup Node
uses: Brightspace/third-party-actions@actions/setup-node
with:
node-version-file: .nvmrc
- name: Install dependencies
run: npm ci
- name: Lint and Test
run: npm run test
- name: Semantic Release
uses: BrightspaceUI/actions/semantic-release@main
with:
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.D2L_RELEASE_TOKEN }}