Skip to content

Commit

Permalink
Testing an upgrade to Next 15 and NPM
Browse files Browse the repository at this point in the history
  • Loading branch information
liarco committed Dec 3, 2024
1 parent 0aa4bed commit 70afbbc
Show file tree
Hide file tree
Showing 6 changed files with 1,146 additions and 588 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ jobs:
with:
node-version: '20.x'

- run: yarn
- run: yarn lint
- run: npm i
- run: npm run lint
6 changes: 3 additions & 3 deletions .github/workflows/publish-experimental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
registry-url: 'https://registry.npmjs.org'
scope: '@mep-agency'

- run: yarn
- run: yarn lint && yarn build
- run: yarn version --no-git-tag-version --no-commit-hooks --new-version "0.0.0-experimental.${{ github.sha }}" && yarn publish
- run: npm i
- run: npm run lint && npm run build
- run: npm version --no-git-tag-version --no-commit-hooks --new-version "0.0.0-experimental.${{ github.sha }}" && npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/publish-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
registry-url: 'https://registry.npmjs.org'
scope: '@mep-agency'

- run: yarn
- run: yarn lint && yarn build
- run: yarn publish
- run: npm i
- run: npm run lint && npm run build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading

0 comments on commit 70afbbc

Please sign in to comment.