Skip to content

chore(deps): bump @babel/traverse from 7.22.5 to 7.23.2 (#529) #117

chore(deps): bump @babel/traverse from 7.22.5 to 7.23.2 (#529)

chore(deps): bump @babel/traverse from 7.22.5 to 7.23.2 (#529) #117

Workflow file for this run

on:
push:
branches:
- master
release:
types:
- created
name: Publish NPM package
jobs:
install:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@master
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: clean
run: make clean
- name: install
run: yarn install --frozen-lockfile
- name: build & test & publish
run: make ci
- name: print diff if failed
if: ${{ failure() }}
run: cp dist/temp/eth-connect.api.md report/eth-connect.api.md && git diff
- name: Publish
uses: menduz/oddish-action@master
with:
cwd: ./dist
provenance: true
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: report coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}