Test npmjs.com package #4886
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Test npmjs.com package' | |
on: | |
schedule: | |
- cron: '0 * * * *' # Every hour | |
workflow_dispatch: | |
jobs: | |
npm: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ['18.x'] | |
version: ['latest', 'mainnet', 'devnet', 'testnet'] | |
steps: | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Init new package | |
run: pnpm init | |
- name: Install @nucypher/taco | |
run: pnpm install @nucypher/taco:${{ matrix.version }} |