[Issue #89] Filter and response docs #21
Workflow file for this run
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: CI - Publish @common-grants/core (dry run) | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "specs/**" # Trigger only if files in the `specs/` directory are changed | |
- ".github/workflows/ci-specs-npm.yml" | |
defaults: | |
run: | |
working-directory: ./specs | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: npm ci | |
# Checks that the version is not already published and | |
# that there are no uncommitted changes | |
- name: Run prepublish checks | |
run: npm run prepublishOnly | |
# Setup .npmrc file to publish to npm | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
registry-url: "https://registry.npmjs.org" | |
- name: Dry run publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npm publish --tag alpha --access public --dry-run |