Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
yandeu committed Oct 10, 2023
1 parent 3c359c7 commit cc2c5ce
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,20 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v2

- uses: actions/setup-node@v3
with:
node-version: 18.x

- name: Install Dependencies
run: |
npm install
run: npm install

- name: Compiling TypeScript
run: |
npm run build || true
run: npm run build

- name: Make Bundles
run: |
npm run clean:bundles || true
npm run bundle || true
npm run clean:bundles
npm run bundle
- name: Run Tests
run: npm test
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ for (const pkg of packages) {
console.log('\n')

try {
await spawn(`cd packages/${pkg} && npm run build`)
await spawn(`cd packages/${pkg} && npm run build`)
} catch (err) {
process.exit(err)
}
Expand Down

0 comments on commit cc2c5ce

Please sign in to comment.