Skip to content

chore(deps): update babel monorepo #646

chore(deps): update babel monorepo

chore(deps): update babel monorepo #646

Workflow file for this run

name: "Build / Publish"
on:
push:
branches: [main, beta]
pull_request:
branches: [main, beta]
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
packages: write
contents: write
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18.x
- name: Install dependencies
run: npx ci
- name: Install semantic-release extra plugins
run: npm install --save-dev @semantic-release/changelog @semantic-release/git
- name: Build
run: npm run build
- name: Test
run: npm run test
- name: Create .npmrc file
run: |
echo registry=https://registry.npmjs.org/ > .npmrc
echo @uzenith360:registry=https://npm.pkg.github.com/ > .npmrc
echo '//npm.pkg.github.com/:_authToken=${{ secrets.GH_TOKEN }}' >> .npmrc
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPMAUTHTOKEN }}
run: npx semantic-release