Skip to content

chore(dep): new name #4

chore(dep): new name

chore(dep): new name #4

Workflow file for this run

name: πŸ€Ήβ€β™‚οΈ Continuous Integration
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
name: 🍞 Deploy
runs-on: ubuntu-latest
steps:
- name: πŸ›« Checkout Code
uses: actions/checkout@v4
- name: πŸ“¦ Setup Node
uses: actions/setup-node@v4
with:
node-version: 21
registry-url: https://registry.npmjs.org/
scope: '@pungrumpy'
- name: πŸš€ Setup Bun
uses: oven-sh/setup-bun@v1
- name: πŸ”½ Install Dependencies
run: bun install
- name: βš–οΈ Lint
run: bun lint
- name: πŸ›°οΈ Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: πŸ’‚ Error
if: failure()
run: |
echo "${{ github.event_name }} failed on branch ${{ github.ref }} at commit ${{ github.sha }}"
echo "See ${{ github.run_number }} for more details"