Bump @babel/traverse from 7.22.6 to 7.23.2 (#59) #22
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: build | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- '**.md' | |
- 'dist/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: npm i | |
- run: npm run build | |
- run: npm run test | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
title: 'Latest dist build' | |
body: 'Automated build to ensure latest bits are distributed.' |