Skip to content

chore(deps): update babel monorepo to v7.26.0 #1944

chore(deps): update babel monorepo to v7.26.0

chore(deps): update babel monorepo to v7.26.0 #1944

Workflow file for this run

name: NPM release
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
npm-release:
name: Create a npm release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.CI_GITHUB_TOKEN }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 14
- name: Install dependencies
run: npm ci
- name: Run Test
run: npm run test
- name: Build package
run: npm run build
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v3
env:
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}