semantic-release shareable configuration for Scratch
Find a file
semantic-release-bot 8db74d0f2e chore(release): 1.0.15 [skip ci]
## [1.0.15](https://github.com/scratchfoundation/scratch-semantic-release-config/compare/v1.0.14...v1.0.15) (2024-09-10)

### Bug Fixes

* work around semantic-release/npm plugin prepack issue ([a5d298d](a5d298de3b))
2024-09-10 20:31:48 +00:00
.github ci: fix workflow permissions 2024-02-21 10:52:25 -08:00
.husky build(husky): fix permissions on husky commit-msg hook 2022-08-23 07:19:04 -07:00
.editorconfig ci: add CircleCI config 2022-05-20 16:16:32 -07:00
.eslintrc.js style: use eslint-config-scratch 2022-05-31 12:11:19 -07:00
.gitattributes ci: enable Renovate 2022-05-20 16:42:02 -07:00
.gitignore refactor: fork from @jedmao/semantic-release-npm-github-config@1.0.9 2022-05-20 10:35:49 -07:00
.nvmrc ci: implement GHA CI/CD workflow 2023-10-30 13:30:00 -07:00
CHANGELOG.md chore(release): 1.0.15 [skip ci] 2024-09-10 20:31:48 +00:00
commitlint.config.js fix(commitlint): tell commitlint to ignore release commits 2022-08-26 10:37:38 -07:00
LICENSE Initial commit 2019-06-11 13:05:37 -05:00
package-lock.json chore(release): 1.0.15 [skip ci] 2024-09-10 20:31:48 +00:00
package.json chore(release): 1.0.15 [skip ci] 2024-09-10 20:31:48 +00:00
README.md docs: replace LLK URL in README.md 2024-02-23 13:37:20 -08:00
release.config.js fix: work around semantic-release/npm plugin prepack issue 2024-09-10 12:59:50 -07:00
renovate.json5 Revert "chore(deps): use js-lib-bundled Renovate config" 2024-02-21 10:37:46 -08:00

scratch-semantic-release-config

npm version

Remixed from: @jedmao/semantic-release-npm-github-config

Plugins

This shareable configuration uses the following plugins:

Summary

  • Provides an informative git commit message for the release commit that does not trigger continuous integration and conforms to the conventional commits specification (e.g., "chore(release): 1.2.3 [skip ci]\n\nnotes").
  • Creates a tarball that gets uploaded with each GitHub release.
  • Publishes the same tarball to npm.
  • Commits the version change in package.json.
  • Creates or updates a changelog file.

Install

npm install --save-dev semantic-release scratch-semantic-release-config

Usage

The shareable config can be configured in the semantic-release configuration file:

{
  "extends": "scratch-semantic-release-config",
  "branch": "main"
}

Configuration

Ensure that your CI configuration has the following secret environment variables set:

See each plugin documentation for required installation and configuration steps.

GitHub workflows

If you're configuring a GitHub workflow you might want to do a test build matrix first and then publish only if those tests succeed across all environments. The following will do just that, immediately after something is merged into main.

name: Node CI

on:
  push:
    branches:
      - main

jobs:
  test:
    name: Test on node ${{ matrix.node }} and ${{ matrix.os }}

    runs-on: ${{ matrix.os }}

    strategy:
      matrix:
        node: [8, 10, 12]
        os:
          - ubuntu-latest
          - windows-latest
          - macOS-latest

    steps:
      - name: Preserve line endings
        run: git config --global core.autocrlf false
      - name: Checkout
        uses: actions/checkout@v1
      - name: Setup Node
        uses: actions/setup-node@v1
        with:
          node-version: ${{ matrix.node }}
      - name: Install & test/cover
        run: npm ci && npm run cover
        env:
          CI: true

  release:
    name: npm publish / GitHub release
    needs: test
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v1
      - name: Setup Node
        uses: actions/setup-node@v1
        with:
          node-version: 12
          registry-url: https://registry.npmjs.org/
      - name: Install
        env:
          CI: true
        run: npm ci
      - name: Build
        if: success()
        run: npm run build
      - name: Semantic Release
        if: success()
        env:
          GH_TOKEN: ${{ secrets.GH_TOKEN }}
          NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
          NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
        run: npx semantic-release