From e9d485fe3b5db8c426ac03b30ed8917df0baa62d Mon Sep 17 00:00:00 2001 From: Pauline Date: Sun, 26 Nov 2023 17:13:07 -0500 Subject: feat(lint): switch to eslint config and formatting (use vscode for autoformat) --- .github/actions/setup-pnpm/action.yml | 44 +++++++++++++++++------------------ 1 file changed, 22 insertions(+), 22 deletions(-) (limited to '.github/actions/setup-pnpm') diff --git a/.github/actions/setup-pnpm/action.yml b/.github/actions/setup-pnpm/action.yml index 97f462e..61cf3ee 100644 --- a/.github/actions/setup-pnpm/action.yml +++ b/.github/actions/setup-pnpm/action.yml @@ -1,28 +1,28 @@ name: Setup Node.js, pnpm and dependencies description: Setup Node.js, pnpm and dependencies inputs: - token: - description: Github token - required: false - default: '' + token: + description: Github token + required: false + default: '' runs: - using: 'composite' - steps: - - name: Install pnpm - uses: pnpm/action-setup@v2 - with: - version: 8.x.x + using: composite + steps: + - name: Install pnpm + uses: pnpm/action-setup@v2 + with: + version: 8.x.x - - name: Install Node.js - uses: actions/setup-node@v3 - with: - token: ${{ inputs.token }} - check-latest: true - node-version-file: '.nvmrc' + - name: Install Node.js + uses: actions/setup-node@v3 + with: + token: ${{ inputs.token }} + check-latest: true + node-version-file: .nvmrc - - name: Install pnpm deps - shell: ${{ runner.os == 'Windows' && 'powershell' || 'bash' }} - env: - NODE_ENV: debug - GITHUB_TOKEN: ${{ inputs.token }} - run: pnpm i --frozen-lockfile + - name: Install pnpm deps + shell: ${{ runner.os == 'Windows' && 'powershell' || 'bash' }} + env: + NODE_ENV: debug + GITHUB_TOKEN: ${{ inputs.token }} + run: pnpm i --frozen-lockfile -- cgit