From 42824be54617624495f44efae0e78e91e624f8b7 Mon Sep 17 00:00:00 2001 From: Viet-Tien Ngoc Date: Fri, 22 Nov 2024 16:15:25 +0700 Subject: [PATCH] chore: update node version on github action --- .github/workflows/ci.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22a083c08..dbbc06b79 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,21 +16,21 @@ jobs: strategy: matrix: include: - - node-version: 18.17 - db-type: postgresql - - node-version: 18.17 - db-type: mysql + - node-version: 18.18 + db-type: postgresql + - node-version: 18.18 + db-type: mysql steps: - - uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - cache: 'yarn' - env: - DATABASE_TYPE: ${{ matrix.db-type }} - - run: npm install --global yarn - - run: yarn install - - run: yarn test - - run: yarn build + - uses: actions/checkout@v4 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + cache: 'yarn' + env: + DATABASE_TYPE: ${{ matrix.db-type }} + - run: npm install --global yarn + - run: yarn install + - run: yarn test + - run: yarn build