Skip to content

Commit

Permalink
ci(client): Re-enable browser build & test workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
timoxley committed Oct 11, 2021
1 parent 026cd53 commit 3964c44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/client-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ jobs:
run: npm run test-exports

browser-realtime:
if: ${{ false }}
name: Test Browser Realtime using Node ${{ matrix.node-version }}
strategy:
matrix:
Expand Down Expand Up @@ -145,7 +144,6 @@ jobs:
command: cd packages/client && npm run test-browser-realtime

browser-resend:
if: ${{ false }}
name: Test Browser Realtime + Resend using Node ${{ matrix.node-version }}
strategy:
matrix:
Expand Down
4 changes: 2 additions & 2 deletions packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
},
"scripts": {
"clean": "rm -rf dist; rm -rf vendor",
"build": "npm run bootstrap-dist && npm run build-node && npm run build:types",
"build-production": "npm run clean; npm run bootstrap-dist && NODE_ENV=production npm run build-node && npm run build:types",
"build": "npm run bootstrap-dist && npm run build-node && npm run build:types && npm run build-browser",
"build-production": "npm run clean; npm run bootstrap-dist && NODE_ENV=production npm run build-node && npm run build:types && npm run build-browser-production",
"prepare": "npm run build",
"vendor": "SRCDIR=`node -p \"path.dirname(require.resolve('quick-lru'))\"` bash -c 'mkdir -p vendor/quick-lru; cp -n $SRCDIR/index.d.ts vendor/quick-lru; cp -n $SRCDIR/index.js vendor/quick-lru'; true",
"copy-package": "mkdir -p dist/; node copy-package.js; cp -f package-lock.json dist; cp -f README.md dist; cp -f LICENSE dist; cp -f readme-header-img.png dist; mkdir -p dist/src/encryption/migrations; cp -f ./src/encryption/migrations/* dist/src/encryption/migrations; true",
Expand Down

0 comments on commit 3964c44

Please sign in to comment.