diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 73f36be6..46de7e07 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -7,16 +7,20 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - - name: Install Node v16 - uses: actions/setup-node@v3 + - name: Setup Node + uses: actions/setup-node@v4 with: - node-version: 16 - cache: yarn + node-version: 18.x + + - name: Install pnpm + uses: pnpm/action-setup@v2 + with: + version: latest - name: Install dependencies - run: yarn + run: pnpm i --frozen-lockfile - name: Build - run: yarn build + run: pnpm build diff --git a/nuxt.config.ts b/nuxt.config.ts index 81147e85..597db1e7 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -8,6 +8,9 @@ export default defineNuxtConfig({ "@unocss/reset/eric-meyer.css" ], devtools: { enabled: true }, + features: { + inlineStyles: false + }, googleFonts: { families: { Nunito: [400, 600, 700, 800, 900] diff --git a/pages/contributors.vue b/pages/contributors.vue index 4c39a5bf..0aa172bb 100644 --- a/pages/contributors.vue +++ b/pages/contributors.vue @@ -78,27 +78,31 @@