Skip to content

fix(project): replaceAll is not a function in node14 #11

fix(project): replaceAll is not a function in node14

fix(project): replaceAll is not a function in node14 #11

Workflow file for this run

name: Release
on:
push:
branches:
- master
- beta
- '*.x'
jobs:
lint:
uses: ./.github/workflows/lint.yml
tests:
uses: ./.github/workflows/tests.yml
release:
runs-on: ubuntu-latest
needs: [lint, tests]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
cache: npm
node-version: 16
- name: Install Dependencies
run: npm ci
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release