Skip to content

Revert "update"

Revert "update" #88

Workflow file for this run

<<<<<<< HEAD
name: Node.js Workflow

Check failure on line 2 in .github/workflows/node.js.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/node.js.yml

Invalid workflow file

You have an error in your yaml syntax on line 2
on:
push:
branches: ['main']
pull_request:
branches: ['main']
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.PAT }}
- name: Setup Bun Env
uses: oven-sh/setup-bun@v1
with:
bun-version: 'latest'
- name: Install
run: bun install
- name: Lint
run: bun run lint
continue-on-error: true
- name: Format
run: bun run format
- name: Commit All Changes
uses: stefanzweifel/[email protected]
id: auto-commit-action
with:
commit_user_name: My GitHub Actions Bot
commit_user_email: [email protected]
commit_author: Author <[email protected]>
commit_message: '[ci] Format changes'
push: ${{ steps.auto-commit-action.outputs.changes_detected }}
=======
name: Node.js Workflow
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun Env
uses: oven-sh/setup-bun@v1
with:
bun-version: "latest"
- name: Install
run: bun install
- name: Lint
run: bun run lint
>>>>>>> parent of 73d1b41 (update)