Skip to content

Commit

Permalink
chore: add .nvmrc file
Browse files Browse the repository at this point in the history
  • Loading branch information
joni3k committed Mar 21, 2024
1 parent 16bbd98 commit a2b1a8e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitattributes

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

2 changes: 0 additions & 2 deletions .github/workflows/sonarcloud-report.yml

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

1 change: 1 addition & 0 deletions .gitignore

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

1 change: 1 addition & 0 deletions .nvmrc

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

1 change: 1 addition & 0 deletions .projen/files.json

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

12 changes: 7 additions & 5 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,6 @@ sonarCloudReportWorkflow?.on({
});
sonarCloudReportWorkflow?.addJob('sonarcloud-report', {
runsOn: ['ubuntu-latest'],
tools: {
node: {
version: project.minNodeVersion!,
},
},
permissions: {
contents: JobPermission.READ,
},
Expand Down Expand Up @@ -116,4 +111,11 @@ new TextFile(project, 'sonar-project.properties', {
],
});

/**
* .nvmrc file
*/
new TextFile(project, '.nvmrc', {
lines: ['20.11.1'],
});

project.synth();

0 comments on commit a2b1a8e

Please sign in to comment.