Skip to content

Commit

Permalink
Merge pull request #3011 from pnp/version-4
Browse files Browse the repository at this point in the history
PUblish updates
  • Loading branch information
patrick-rodgers authored Apr 22, 2024
2 parents 61c360e + e26b1b5 commit 4caf20c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,21 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: main
# setup nodejs
- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
cache-dependency-path: package-lock.json

# Run the npm install
- run: npm ci

# Runs a set of commands using the runners shell
- name: Test - not setup
run: echo this would be the tests

# Runs a single command using the runners shell
- name: Run publishing scripts
run: |
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"buildDebug": "npm run clean && npm run pnp-buildsystem-init && pnpbuild -n build-debug",
"clean": "del-cli \"./?(dist|site|build|buildsystem-config.js)\"",
"lint": "eslint ./packages ./test --ext .ts",
"just-publish": "npm run pnp-buildsystem-init && pnpbuild -n publish",
"package": "npm run pnp-buildsystem-init && pnpbuild -n package",
"pnp-buildsystem-init": "tsc -p tsconfig.buildsystem.json",
"pnp-publish-beta": "npm run pnp-buildsystem-init && pnpbuild -n publish-beta",
Expand Down

0 comments on commit 4caf20c

Please sign in to comment.