Skip to content

Commit

Permalink
actually fix rosetta build order
Browse files Browse the repository at this point in the history
  • Loading branch information
mrgrain committed Nov 11, 2024
1 parent 70d506a commit 7d952c7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml

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

12 changes: 6 additions & 6 deletions projenrc/rosetta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,28 +53,28 @@ export class RosettaPeerDependency extends Component {
},
steps: [{
name: 'Checkout',
uses: 'actions/checkout@v3',
uses: 'actions/checkout@v4',
with: {
ref: '${{ github.event.pull_request.head.ref }}',
repository: '${{ github.event.pull_request.head.repo.full_name }}',
},
},
{
name: 'Setup Node.js',
uses: 'actions/setup-node@v3',
uses: 'actions/setup-node@v4',
with: {
// @ts-ignore
'node-version': project.nodeVersion,
},
},
{
name: 'Install dependencies',
run: 'yarn install --check-files',
},
{
name: 'Install Rosetta version',
run: `yarn add --dev ${JSII_ROSETTA}@\${{ matrix.rosetta }}`,
},
{
name: 'Install dependencies',
run: 'yarn install --check-files',
},
{
name: 'compile+test',
run: ['npx projen compile', 'npx projen test --runInBand'].join('\n'),
Expand Down

0 comments on commit 7d952c7

Please sign in to comment.