Skip to content

CI: Node 22 in test matrix (#3946) #2591

CI: Node 22 in test matrix (#3946)

CI: Node 22 in test matrix (#3946) #2591

Workflow file for this run

name: Release
on:
push:
branches: ["master"]
jobs:
release:
name: Trigger release
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
steps:
- uses: actions/checkout@v3
- name: Prepare repository
run: |
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
git fetch --prune --unshallow
- name: Use node
uses: actions/setup-node@v3
with:
cache: yarn
node-version-file: '.tool-versions'
registry-url: https://registry.npmjs.org
- name: Bootstrap
run: yarn install --immutable
- name: Build
run: yarn build
- name: Bundle
run: yarn bundle
- name: Lint
run: yarn lint
- name: Create release
run: yarn release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}