chore: force re-publish #1663
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
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the main branch | |
name: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [assigned, opened, synchronize, reopened] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
env: | |
PROJEN_DISABLE_POST: '1' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
# We are seeing a very large slow down in startup execution in with npx (npm v9.7.2). | |
# Setting to older version of npm to speed up execution. | |
- run: npm install -g [email protected] | |
- run: yarn --immutable-cache | |
- run: yarn build | |
- run: yarn test | |
- run: yarn blueprints:synth --cache | |
- run: yarn blueprints:resynth --cache |