build(deps-dev): bump cspell from 7.3.8 to 8.16.0 #204
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
build: | |
if: github.ref != 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build process | |
uses: devcontainers/ci@v0.3 | |
with: | |
runCmd: | | |
npm ci | |
npm run turbo:ci:build | |
release: | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "20.x" | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
npm ci | |
- name: Create Release Pull Request or Publish to npm | |
uses: changesets/action@v1.4.5 | |
with: | |
# these commands build & tests as well | |
publish: npm run turbo:ci:publish | |
version: npm run turbo:ci:version | |
commit: "chore: release" | |
title: "chore: release" | |
createGithubReleases: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |