Skip to content

fix(deps): update babel monorepo #446

fix(deps): update babel monorepo

fix(deps): update babel monorepo #446

Workflow file for this run

name: Node.js Packages
on:
push:
branches: ['umati']
# Publish semver tags as releases.
# tags: [ 'v*.*.*' ]
jobs:
publish-gpr:
runs-on: ubuntu-24.04
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4.2.2
with:
fetch-depth: 2
- uses: actions/setup-node@v4.1.0
with:
node-version: '18.x'
registry-url: 'https://npm.pkg.github.com'
scope: '@umati'
- name: Install
run: npm ci --prefer-offline
- name: Build
run: npm run build
- run: npm publish
working-directory: './packages/react-scripts'
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}