From ace77ea4527309b96db929f5746a43d54453e711 Mon Sep 17 00:00:00 2001
From: will Farrell <willfarrell@proton.me>
Date: Fri, 8 Dec 2023 18:59:43 -0700
Subject: [PATCH] ci: remove transpile step

---
 .github/workflows/release.yml | 8 ++++----
 .github/workflows/tests.yml   | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index a060bb75e..a7f0fdba5 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -34,11 +34,11 @@ jobs:
         run: |
           npm install
 
-      - name: Transpile for Node.js ${{ matrix.node-version }} (esm)
-        run: |
-          ./node_modules/.bin/lerna exec --bail --concurrency 2 -- ../../node_modules/.bin/swc --config-file ../../swc.esm.config.json --source-maps false index.js --out-file index.js
+      #- name: Transpile for Node.js ${{ matrix.node-version }} (esm)
+      #  run: |
+      #    ./node_modules/.bin/lerna exec --bail --concurrency 2 -- ../../node_modules/.bin/swc --config-file ../../swc.esm.config.json --source-maps false index.js --out-file index.js
+      #    ./node_modules/.bin/swc --config-file ./swc.esm.config.json --source-maps false packages/validator/transpile.js --out-file packages/validator/transpile.js
 
-          ./node_modules/.bin/swc --config-file ./swc.esm.config.json --source-maps false packages/validator/transpile.js --out-file packages/validator/transpile.js
       #- name: Transpile for Node.js ${{ matrix.node-version }} (cjs)
       #  run: |
       #    ./node_modules/.bin/lerna exec --bail --concurrency 2 -- ../../node_modules/.bin/swc --config-file ../../swc.cjs.config.json --source-maps false index.js --out-file index.cjs
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index ff05d02b6..70540ef39 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -28,11 +28,11 @@ jobs:
         run: |
           npm install
 
-      - name: Transpile for Node.js ${{ matrix.node-version }} (esm)
-        run: |
-          ./node_modules/.bin/lerna exec --bail --concurrency 2 -- ../../node_modules/.bin/swc --config-file ../../swc.esm.config.json --source-maps false index.js --out-file index.js
+      #- name: Transpile for Node.js ${{ matrix.node-version }} (esm)
+      #  run: |
+      #    ./node_modules/.bin/lerna exec --bail --concurrency 2 -- ../../node_modules/.bin/swc --config-file ../../swc.esm.config.json --source-maps false index.js --out-file index.js
+      #    ./node_modules/.bin/swc --config-file ./swc.esm.config.json --source-maps false packages/validator/transpile.js --out-file packages/validator/transpile.js
 
-          ./node_modules/.bin/swc --config-file ./swc.esm.config.json --source-maps false packages/validator/transpile.js --out-file packages/validator/transpile.js
       #- name: Transpile for Node.js ${{ matrix.node-version }} (cjs)
       #  run: |
       #    ./node_modules/.bin/lerna exec --bail --concurrency 2 -- ../../node_modules/.bin/swc --config-file ../../swc.cjs.config.json --source-maps false index.js --out-file index.cjs