Skip to content

Commit

Permalink
add permissions and publish to both registries
Browse files Browse the repository at this point in the history
  • Loading branch information
tphummel committed Jan 19, 2024
1 parent d232f61 commit e29f216
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,54 +1,47 @@
name: Node.js CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x, 18.x, 20.x, 21.x]

steps:
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install Dependencies
run: npm ci

- name: Run Tests
run: npm test

publish:
needs: test
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request'
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: setup node.js to publish to github packages
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: current
registry-url: https://npm.pkg.github.com/

- name: Publish to GitHub Packages
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: setup node.js to publish to npm
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: current
registry-url: https://npm.pkg.github.com/
registry-url: https://registry.npmjs.org
- name: Publish to npm
run: npm publish
env:
Expand Down

0 comments on commit e29f216

Please sign in to comment.