diff --git a/.github/workflows/netlify-deploy.yml b/.github/workflows/netlify-deploy.yml index 1f49d818..ddc11cad 100644 --- a/.github/workflows/netlify-deploy.yml +++ b/.github/workflows/netlify-deploy.yml @@ -18,13 +18,13 @@ jobs: name: Install pnpm id: pnpm-install with: - version: 9.1.0 + version: 9.8.0 run_install: false - name: Use node_modules cache uses: actions/cache@v4 id: nm-cache with: - path: 'svelte-app/node_modules' + path: "svelte-app/node_modules" key: ${{ runner.os }}-npm-${{ hashFiles('svelte-app/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-nm-16- diff --git a/.github/workflows/sanity.yml b/.github/workflows/sanity.yml index 6f0f16f7..8ad5d7d7 100644 --- a/.github/workflows/sanity.yml +++ b/.github/workflows/sanity.yml @@ -2,16 +2,16 @@ name: CI - Sanity on: push: - branches: [ "main" ] + branches: ["main"] paths-ignore: - - '**/*.md' - - 'LICENSE' - - '**/.husky' - - 'svelte-app/**' - - 'express-api/**' - - 'elixir-api/**' + - "**/*.md" + - "LICENSE" + - "**/.husky" + - "svelte-app/**" + - "express-api/**" + - "elixir-api/**" -concurrency: +concurrency: group: sanity cancel-in-progress: true @@ -30,13 +30,13 @@ jobs: name: Install pnpm id: pnpm-install with: - version: 9.1.0 + version: 9.8.0 run_install: false - name: Use node_modules cache uses: actions/cache@v4 id: nm-cache with: - path: 'sanity-cms/node_modules' + path: "sanity-cms/node_modules" key: ${{ runner.os }}-npm-${{ hashFiles('sanity-cms/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-npm- diff --git a/.github/workflows/svelte.yml b/.github/workflows/svelte.yml index b12ad5d8..84419f1b 100644 --- a/.github/workflows/svelte.yml +++ b/.github/workflows/svelte.yml @@ -2,17 +2,17 @@ name: CI on: push: - branches: [ "main" ] + branches: ["main"] paths-ignore: - - '**/*.md' - - 'LICENSE' - - '**/.husky' - - 'sanity-cms/**' - - 'express-api/**' - - 'rust-api/**' - - 'elixir-api/**' + - "**/*.md" + - "LICENSE" + - "**/.husky" + - "sanity-cms/**" + - "express-api/**" + - "rust-api/**" + - "elixir-api/**" -concurrency: +concurrency: group: ci cancel-in-progress: true @@ -31,13 +31,13 @@ jobs: name: Install pnpm id: pnpm-install with: - version: 9.1.0 + version: 9.8.0 run_install: false - name: Use node_modules cache uses: actions/cache@v4 id: nm-cache with: - path: 'svelte-app/node_modules' + path: "svelte-app/node_modules" key: ${{ runner.os }}-npm-${{ hashFiles('svelte-app/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-npm- @@ -52,6 +52,6 @@ jobs: secrets: inherit deploy: name: Deploy - needs: [ lint, tests ] + needs: [lint, tests] uses: ./.github/workflows/netlify-deploy.yml secrets: inherit diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1bd1478b..152e7a7c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,10 +2,10 @@ name: Tests on: pull_request: - branches: [ "main" ] + branches: ["main"] workflow_call: -concurrency: +concurrency: group: test-${{ github.ref }} cancel-in-progress: true @@ -23,13 +23,13 @@ jobs: - uses: pnpm/action-setup@v4 name: Install pnpm with: - version: 9.1.0 + version: 9.8.0 run_install: false - name: Use node_modules cache uses: actions/cache@v4 id: nm-cache with: - path: 'svelte-app/node_modules' + path: "svelte-app/node_modules" key: ${{ runner.os }}-npm-${{ hashFiles('svelte-app/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-npm- @@ -52,13 +52,13 @@ jobs: - name: Install pnpm uses: pnpm/action-setup@v4 with: - version: 9.1.0 + version: 9.8.0 run_install: false - name: Use node_modules cache uses: actions/cache@v4 id: nm-cache with: - path: 'svelte-app/node_modules' + path: "svelte-app/node_modules" key: ${{ runner.os }}-npm-${{ hashFiles('svelte-app/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-npm-