diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1441636d..4806fc92 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,8 +27,6 @@ jobs: registry-url: 'https://registry.npmjs.org' - name: Install latest NPM run: npm install -g npm@7 - - name: NPM install with caching - uses: bahmutov/npm-install@v1 - name: Set Min Version uses: thefringeninja/action-minver@2.0.0-preview1 id: version @@ -41,6 +39,9 @@ jobs: echo "MINVERVERSIONOVERRIDE=${{steps.version.outputs.version}}" >> $GITHUB_ENV npm run version -- ${{steps.version.outputs.version}} replace-in-files --regex='\/(v?((\d+)\.(\d+)(\.(\d+))?)(?:-([\dA-Za-z-]+(?:\.[\dA-Za-z-]+)*))?(?:\+([\dA-Za-z-]+(?:\.[\dA-Za-z-]+)*))?)' --replacement=/${{steps.version.outputs.version}} packages/core/src/configuration/Configuration.ts + replace-in-files --string='2.0.0-dev' --replacement=${{steps.version.outputs.version}} packages/*/package.json + - name: NPM install with caching + uses: bahmutov/npm-install@v1 - name: Build run: npm run build - name: Lint