From 68dbb58a0a4b1ef5f5e463629875cebad843a7a3 Mon Sep 17 00:00:00 2001 From: Kyle Date: Wed, 20 Mar 2024 18:52:00 -0400 Subject: [PATCH] fix ci --- .github/workflows/ci.yml | 12 ------------ package.json | 3 +-- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3bf83aa..c82c6ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,18 +20,6 @@ jobs: - name: Install Node.js dependencies run: npm ci - - name: Build - run: npm run build - - - name: Build Example - run: npm run build-example-no-webpack - - - name: Build Webpack - run: npm run build-example - - - name: Test - run: npm run serve-example - - name: Install Playwright Browsers run: npx playwright install --with-deps diff --git a/package.json b/package.json index aa31090..b1faac7 100644 --- a/package.json +++ b/package.json @@ -15,8 +15,7 @@ "scripts": { "build": "npm run build-esnext", "build-esnext": "tsc -p tsconfig.json", - "build-example-no-webpack": "npm run build && tsc -p tsconfig.example.json", - "build-example": "npm run build-example-no-webpack && webpack", + "build-example": "npm run build && tsc -p tsconfig.example.json && webpack", "clean": "rimraf ./dist ./build", "lint:no-fix": "eslint --config='.eslintrc.js' './src/*.{ts,tsx}' './tests/*.{ts,tsx}'", "lint": "npm run lint:no-fix -- --fix",