Skip to content

Bump comment-parser from 1.4.5 to 1.4.6 in the npm group #5825

Bump comment-parser from 1.4.5 to 1.4.6 in the npm group

Bump comment-parser from 1.4.5 to 1.4.6 in the npm group #5825

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Use Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 'lts/*'
check-latest: true
package-manager-cache: false
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0
name: Install pnpm
with:
run_install: |
- recursive: true
args: [--no-frozen-lockfile]
- name: Build & test
env:
APPSTORE_ISSUER_ID: ${{ secrets.APPSTORE_ISSUER_ID }}
APPSTORE_KEY_ID: ${{ secrets.APPSTORE_KEY_ID }}
APPSTORE_PRIVATE_KEY: ${{ secrets.APPSTORE_PRIVATE_KEY }}
APPSTORE_PRIVATE_KEY_FILE_PATH: '/tmp/privateKey.p8'
NODE_ENV: test
run: |
echo ${APPSTORE_PRIVATE_KEY} | base64 -d > ${APPSTORE_PRIVATE_KEY_FILE_PATH}
echo "" >> ${APPSTORE_PRIVATE_KEY_FILE_PATH}
pnpm all