Skip to content

fix(deps): update all dependencies #118

fix(deps): update all dependencies

fix(deps): update all dependencies #118

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Node.js LTS
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.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@7a166d7532b277f34e16238930461bf77f9d7ed8 # v1
with:
fail-fast: false