This repository has been archived by the owner on Dec 11, 2024. It is now read-only.
chore(deps): update dependency flow-bin to ^0.251.0 #450
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
with: | |
fetch-depth: 2 | |
- uses: actions/[email protected] | |
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 }} |