Skip to content

chore(deps): bump @babel/traverse from 7.22.8 to 7.23.2 in /example (… #33

chore(deps): bump @babel/traverse from 7.22.8 to 7.23.2 in /example (…

chore(deps): bump @babel/traverse from 7.22.8 to 7.23.2 in /example (… #33

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
build:
if:
github.actor != 'carbon-bot'
&& !startsWith(github.event.head_commit.message, 'ci-skip')
name: Create release - Node.js v18.16.1
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js 18.16.1
uses: actions/setup-node@v3
with:
node-version: '18.16.1'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: |
yarn install --cwd example --frozen-lockfile
yarn install --frozen-lockfile
- name: Deploy to Github & NPM 🚀
run: |
git config --global user.email "[email protected]"
git config --global user.name "carbon-bot"
npm set "//registry.npmjs.org/:_authToken" ${{ secrets.NPM_TOKEN }}
yarn release --ci
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}