Skip to content

Commit

Permalink
Merge branch 'version-4' of https://github.com/pnp/pnpjs into version-4
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-rodgers committed Dec 20, 2023
2 parents 97aa3c4 + bc9fb34 commit bbe3b5c
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
40 changes: 40 additions & 0 deletions .github/workflows/v4-nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: v4 Nightly Builds

on:
schedule:
- cron: "0 2 * * 1-5"

workflow_dispatch:

jobs:
publish-v4-nightly:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# 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
with:
ref: version-4
# setup nodejs
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
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 a one-line script
run: npm run pnp-publish-v4nightly
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
2 changes: 1 addition & 1 deletion tools/buildsystem/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pnp/buildsystem",
"version": "4.0.0-beta4",
"version": "4.0.0-beta5",
"bin": {
"pnpbuild": "bin/buildsystem.js"
},
Expand Down

0 comments on commit bbe3b5c

Please sign in to comment.