From e6576e75b06a16a3d6335790e2993ba40b09cc69 Mon Sep 17 00:00:00 2001 From: mahdi Date: Fri, 16 Aug 2024 07:02:38 +0330 Subject: [PATCH] ci: run on ubuntu-latest instead of archlinux --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b80700e..79984a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,18 +5,18 @@ on: - main jobs: build: - runs-on: archlinux + runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - + - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: 20 - + - name: Install dependencies run: npm install - + - name: Run tests run: npm test