diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 2154b2dc..26876d4b 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -1,15 +1,7 @@ -# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created -# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages - name: Publish to NPM -# on: -# release: -# types: [created] - on: push: - # branches: [master] tags: - '*' @@ -17,26 +9,45 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - run: corepack enable - - uses: actions/setup-node@v4 - with: - node-version: 22 - - run: yarn - - run: yarn test + - name: Checkout code + uses: actions/checkout@v4 + + - name: Enable Corepack + run: corepack enable + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: 22 + cache: 'yarn' + + - name: Install dependencies + run: yarn + + - name: Run tests + run: yarn test publish-npm: needs: build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - run: corepack enable - - uses: actions/setup-node@v4 - with: - node-version: 22 - cache: 'yarn' - registry-url: https://registry.npmjs.org/ - - run: yarn workspaces focus --all --production - - run: npm publish - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}} + - name: Checkout code + uses: actions/checkout@v4 + + - name: Enable Corepack + run: corepack enable + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: 22 + cache: 'yarn' + registry-url: https://registry.npmjs.org/ + + - name: Install production dependencies + run: yarn workspaces focus --all --production + + - name: Publish package + run: npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} \ No newline at end of file diff --git a/package.json b/package.json index 19f25ad2..3730992e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "svelte-marked", "description": "A markdown renderer for Svelte.", - "version": "0.5.3", + "version": "0.5.4", "packageManager": "yarn@4.4.0", "engines": { "node": ">=18"