diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 32fbe1d..2908e64 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,10 +15,9 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Install required dependencies - run: | - curl -sL https://deb.nodesource.com/setup_lts.x | sudo -E bash - - sudo DEBIAN_FRONTEND=noninteractive apt install -y nodejs + - uses: actions/setup-node@v4 + with: + node-version: latest - name: Print versions run: | git --version diff --git a/package.json b/package.json index 70b7b60..060aca9 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,7 @@ "@types/eslint": "8.56.5", "@typescript-eslint/eslint-plugin": "^7.1.0", "@typescript-eslint/parser": "^7.1.0", + "@vitest/coverage-v8": "^1.3.1", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-svelte": "^2.35.1",