8000 2024/07/11 · mycpen/dlvr@ab80797 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

2024/07/11

2024/07/11 #31

Workflow file for this run

name: autofix.ci
on:
push:
branches:
- main
pull_request: {}
permissions:
contents: read
jobs:
autofix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PNPM
run: corepack enable
- name: Set node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: pnpm
- name: Setup
run: npm i -g @antfu/ni
- name: Install
run: nci
- name: Lint and fix
run: nr lint:fix
- name: Test Minify
run: nr test:minify -u
- uses: autofix-ci/action@ea32e3a12414e6d3183163c3424a7d7a8631ad84
0