Skip to content

fix: we only use pnpm #15

fix: we only use pnpm

fix: we only use pnpm #15

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
package_manager: [pnpm]
package_root: ["./test/app-in-root/", "./test/app-in-subdirectory/"]
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 20
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install test app dependencies
run: |
cd ${{ matrix.package_root }}
${{ matrix.package_manager }} install
- name: Run action
uses: ./
with:
github_token: ${{ secrets.github_token }}
package_root: ${{ matrix.package_root }}
use_vue_cli: ${{ contains(matrix.package_root, 'vue')}}
max_attempts: "2"