Skip to content

build: Bump Node Version to V20 #918

build: Bump Node Version to V20

build: Bump Node Version to V20 #918

Workflow file for this run

name: Test & Build
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
pull_request_target:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
build:
runs-on: ubuntu-latest
if: |
(github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]') ||
(github.event_name != 'pull_request_target' && github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- run: yarn
- run: yarn tsc
- run: yarn lint
- run: yarn build
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: 'chore: build'
commit_author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
commit_user_name: github-actions[bot]
commit_user_email: 41898282+github-actions[bot]@users.noreply.github.com>