chore(deps): update pnpm to v9.12.0 (#2698) #4286
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coverage | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
types: [opened, synchronize] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
Coverage: | |
name: Coveralls | |
runs-on: ubuntu-latest | |
timeout-minutes: 7 | |
services: | |
postgres: | |
image: postgres:17.0-alpine3.20 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: your_password | |
POSTGRES_DB: testdb | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd pg_isready --health-interval 1s --health-timeout 0.5s --health-retries 30 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 2 | |
# token: ${{ secrets.RENOVATE_HELPER_GITHUB_PAT }} | |
- name: Set up pnpm | |
uses: pnpm/[email protected] | |
- name: Set up Node | |
uses: actions/[email protected] | |
with: | |
node-version-file: .nvmrc | |
cache: 'pnpm' | |
- name: Set up Bun | |
uses: oven-sh/[email protected] | |
with: | |
bun-version: 1.1.29 | |
- name: Install Dependencies | |
run: pnpm i | |
- name: Set up Git | |
run: | | |
git config --global init.defaultBranch main | |
git config --global user.email "[email protected]" | |
git config --global user.name "Jeremy Banka" | |
# - name: Commit Lockfile? | |
# uses: stefanzweifel/[email protected] | |
# with: | |
# commit_message: 📦 update lockfile | |
- name: Test | |
run: bun test:coverage | |
- name: Coverage | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |