Skip to content

chore: fix scripts, broken code and add command to ensure gql schema #2079

chore: fix scripts, broken code and add command to ensure gql schema

chore: fix scripts, broken code and add command to ensure gql schema #2079

Workflow file for this run

name: CI - Client
on:
push:
paths:
- 'client/**'
- 'package.json'
- '.github/workflows/main-client.yml'
env:
NODE_VERSION: '18'
PNPM_VERSION: 8
jobs:
cache-modules:
name: Cache Node Modules
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- name: Check for dupe action
id: skip_check
uses: fkirc/skip-duplicate-actions@v5
continue-on-error: true
- uses: actions/checkout@v3
if: steps.skip_check.outputs.should_skip != 'true'
- name: Install pnpm
if: steps.skip_check.outputs.should_skip != 'true'
uses: pnpm/action-setup@v2
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/setup-node@v3
if: steps.skip_check.outputs.should_skip != 'true'
id: setup-node
with:
cache: 'pnpm'
node-version: ${{ env.NODE_VERSION }}
- name: Install packages
if: steps.skip_check.outputs.should_skip != 'true' && steps.setup-node.outputs.cache-hit != 'true'
run: pnpm install --frozen-lockfile --ignore-scripts
lint:
name: Lint
runs-on: ubuntu-latest
needs: [cache-modules]
if: needs.cache-modules.outputs.should_skip != 'true' && contains(fromJson('["ved-bot", "renovate[bot]"]'), github.actor) == false
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/setup-node@v3
with:
cache: 'pnpm'
node-version: ${{ env.NODE_VERSION }}
- name: Install packages
run: pnpm install
- name: Lint
run: pnpm run --filter ./client lint
build:
name: Build
runs-on: ubuntu-latest
needs: [cache-modules]
if: needs.cache-modules.outputs.should_skip != 'true'
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/setup-node@v3
with:
cache: 'pnpm'
node-version: ${{ env.NODE_VERSION }}
- name: Install packages
run: pnpm install
- name: Init
run: pnpm run init --no-api --no-client
- name: Build
run: pnpm run --filter ./client build
- name: Cache Build Folders
if: contains(fromJson('["ved-bot"]'), github.actor) == false
uses: actions/cache@v3
with:
path: |
client/.vercel
client/.svelte-kit
key: client~build-${{ env.NODE_VERSION }}-${{ runner.os }}-${{ hashFiles('client/package.json', 'client/.vercel/**', 'client/.svelte-kit/**') }}
validate:
name: Validate
runs-on: ubuntu-latest
needs: [cache-modules, build]
if: needs.cache-modules.outputs.should_skip != 'true' && contains(fromJson('["ved-bot"]'), github.actor) == false
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/setup-node@v3
with:
cache: 'pnpm'
node-version: ${{ env.NODE_VERSION }}
- name: Install packages
run: pnpm install
- name: Init
run: pnpm run init --no-api --no-client
- name: Fetch Cached Build Folders
uses: actions/cache@v3
with:
path: |
client/.vercel
client/.svelte-kit
key: client~build-${{ env.NODE_VERSION }}-${{ runner.os }}-${{ hashFiles('client/package.json', 'client/.vercel/**', 'client/.svelte-kit/**') }}
restore-keys: |
client~build-${{ env.NODE_VERSION }}-${{ runner.os }}-
- name: Validate
run: pnpm run --filter ./client validate