From 40063466fb31bbf88ecba3b9128291450f96f6a6 Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Sat, 22 Jun 2024 11:54:12 +0300 Subject: [PATCH] Update nightly.yml --- .github/workflows/nightly.yml | 48 ++++++++++++++++++++--------------- 1 file changed, 27 insertions(+), 21 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index b98d33338..0f5261601 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -1,32 +1,38 @@ name: Daily Build on: - schedule: - - cron: '0 6 * * *' + schedule: + - cron: '0 6 * * *' permissions: - contents: read + contents: read jobs: - nightly: - if: github.repository == 'primefaces/primevue' && github.ref == 'refs/heads/master' - runs-on: ubuntu-latest - name: Node ${{ matrix.node-version }} + nightly: + if: github.repository == 'primefaces/primevue' && github.ref == 'refs/heads/master' + runs-on: ubuntu-latest + name: Node ${{ matrix.node-version }} - strategy: - matrix: - node-version: [18, 20] + strategy: + matrix: + node-version: [18, 20] - steps: - - uses: actions/checkout@v4 + steps: + - name: Checkout repository + uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - cache: 'pnpm' + - name: Install pnpm + uses: pnpm/action-setup@v4 + with: + version: 9 - - name: Build - run: | - pnpm run setup - pnpm run build:lib + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + cache: 'pnpm' + + - name: Build + run: | + pnpm run setup + pnpm run build:lib