Skip to content

fix(deps): update all dependencies #45

fix(deps): update all dependencies

fix(deps): update all dependencies #45

Workflow file for this run

name: autofix.ci # For security reasons, the workflow in which the autofix.ci action is used must be named "autofix.ci".
on:
pull_request:
types:
- opened
- reopened
- synchronize
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
jobs:
autofix:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Setup Node.js LTS
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: lts/*
cache: yarn
- name: Install dependencies
run: yarn --immutable
- name: Build
run: yarn build
- name: Format Codes
run: yarn format
- name: Apply autofix.ci
uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27 # v1
with:
fail-fast: false