From dcb9ad4eaba1368fb868525f750d714521e0923a Mon Sep 17 00:00:00 2001 From: Akalanka Perera Date: Sat, 27 Jul 2024 18:52:20 +0530 Subject: [PATCH] Chore: updated workflow node versions to 18 --- .github/actions/release/action.yml | 2 +- .github/workflows/lint-test.yml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/actions/release/action.yml b/.github/actions/release/action.yml index 0751f93..947b62e 100644 --- a/.github/actions/release/action.yml +++ b/.github/actions/release/action.yml @@ -10,7 +10,7 @@ runs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: "16.x" + node-version: "18.x" registry-url: "https://registry.npmjs.org" - name: Configure git diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index be544d0..50585a1 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - command: ['lint', 'test'] + command: ["lint", "test"] env: TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} TURBO_TEAM: ${{ secrets.TURBO_TEAM }} @@ -18,18 +18,18 @@ jobs: - name: Checkout repository ๐Ÿ›Ž๏ธ uses: actions/checkout@v3 - - name: Setup Node.js 16 ๐Ÿ“— + - name: Setup Node.js 18 ๐Ÿ“— uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Install dependencies ๐Ÿ“ฆ - run: npm install -g pnpm@8 && pnpm install --ignore-scripts - + run: npm install -g pnpm@9.6.0 && pnpm install --ignore-scripts + - name: Run checks ๐Ÿงช run: | pnpm --filter @sliit-foss/eslint-config-internal build pnpm ${{ matrix.command }} env: GITHUB_ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN_GITHUB }} - FIREBASE_CONFIG: ${{ secrets.FIREBASE_CONFIG }} \ No newline at end of file + FIREBASE_CONFIG: ${{ secrets.FIREBASE_CONFIG }}