-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(codegen): gen entry point should have shebang, fix ci (#53)
- Loading branch information
Showing
3 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,13 @@ version: 2.1 | |
# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects. | ||
# See: https://circleci.com/docs/2.0/orb-intro/ | ||
orbs: | ||
node: circleci/node@5.0.2 | ||
node: circleci/node@5.1.0 | ||
|
||
jobs: | ||
build_and_test: | ||
executor: node/default # use the default executor defined within the orb | ||
executor: | ||
name: node/default # use the default executor defined within the orb | ||
tag: '18.18' | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
|
@@ -19,7 +21,9 @@ jobs: | |
name: Install pnpm package manager | ||
command: | | ||
sudo corepack enable | ||
sudo corepack prepare pnpm@latest-8 --activate | ||
sudo corepack prepare [email protected] --activate | ||
node --version | ||
pnpm --version | ||
- run: | ||
name: Install Dependencies | ||
command: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// #!/usr/bin/env node | ||
#!/usr/bin/env node | ||
|
||
import { codegen } from './codegen.js' | ||
|
||
|