Skip to content

Bump prettier from 3.3.3 to 3.4.1 in /action #2806

Bump prettier from 3.3.3 to 3.4.1 in /action

Bump prettier from 3.3.3 to 3.4.1 in /action #2806

Workflow file for this run

name: test
on:
push:
pull_request:
jobs:
provider:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
id-token: write
contents: read
environment: development
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
cache: true
go-version-file: provider/github-app-token/go.mod
cache-dependency-path: provider/github-app-token/go.sum
- name: Test
run: |
make test
working-directory: provider/github-app-token
action:
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
cache: true
go-version-file: provider/github-app-token/go.mod
cache-dependency-path: provider/github-app-token/go.sum
- name: Set up Node.js
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version-file: action/package.json
cache: "npm"
cache-dependency-path: action/package-lock.json
- name: Install dependencies
run: |
npm ci
working-directory: action
- name: Test
run: |
npm run test
working-directory: action