promisify child process exec #20
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: 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" |