Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
rix0rrr committed Jul 23, 2024
1 parent 9e72432 commit 56863b1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion projenrc/build-workflow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export class BuildWorkflow {
name: 'Setup Node.js',
uses: 'actions/setup-node@v4',
with: {
'node-version': nodeVersion,
'node-version': '22', // Temporarily
'cache': 'yarn',
},
},
Expand All @@ -80,6 +80,10 @@ export class BuildWorkflow {
name: 'Install dependencies',
run: 'yarn install --check-files',
},
{
name: 'inspectenv',
run: ['npx --version', 'which npx', 'ls node_modules/.bin'].join('\n'),
},
{
name: 'compile',
run: ['npx projen', 'npx projen pre-compile', 'npx projen compile', 'npx projen post-compile'].join(' && '),
Expand Down

0 comments on commit 56863b1

Please sign in to comment.