Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Bump @babel/traverse from 7.4.3 to 7.23.2 #52

Bump @babel/traverse from 7.4.3 to 7.23.2

Bump @babel/traverse from 7.4.3 to 7.23.2 #52

Workflow file for this run

name: NPM Build and Publish
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and build
run: |
npm ci
npm run svgr
npm run generate-entrypoints
npm run build
- name: npm publish
if: github.ref == 'refs/heads/master'
run: |
npm config set //registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN
npm publish --access public
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}