diff --git a/.github/workflows/release-matrix.yml b/.github/workflows/release-matrix.yml index 70c8d25..672b8ac 100644 --- a/.github/workflows/release-matrix.yml +++ b/.github/workflows/release-matrix.yml @@ -14,20 +14,17 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - + - uses: pnpm/action-setup@v2 + with: + version: 6.0.2 - name: Set up Node.js uses: actions/setup-node@v3 with: node-version: 16 check-latest: true - - uses: pnpm/action-setup@v2 - with: - version: 6.0.2 - - name: Install Node modules run: | pnpm install - - name: Get name and version from package.json run: | test -n $(node -p -e "require('./package.json').name") && @@ -36,7 +33,6 @@ jobs: echo PACKAGE_VERSION=$(node -p -e "require('./package.json').version") >> $GITHUB_ENV || exit 1 - name: Make build run: pnpm run build-${{ matrix.build_type }}-${{ matrix.gui }} - - name: Upload release uses: actions/upload-release-asset@v1 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8f048be..6ac63f2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,13 +11,14 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js 14 - uses: actions/setup-node@v3 - with: - node-version: 16 - uses: pnpm/action-setup@v2 with: version: 6.0.2 + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: 16 + check-latest: true - run: pnpm i - run: pnpx eslint . test: