Skip to content

ci(github): fix test.yml #2

ci(github): fix test.yml

ci(github): fix test.yml #2

Workflow file for this run

name: test
on: push
permissions:
packages: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Use Node.js
uses: actions/setup-node@v6
- name: Configure registry
run: echo '@remarkablemark:registry=https://npm.pkg.github.com' > .npmrc
- name: Install package
run: npm install @remarkablemark/test
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Use package
run: node -p 'require("@remarkablemark/test").hello()'