-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (41 loc) · 1.32 KB
/
v3-nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: v3 Nightly Builds
on:
schedule:
- cron: "0 2 * * 1-5"
workflow_dispatch:
jobs:
publish-v3-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@v2
with:
ref: version-3
# setup nodejs
- name: Use Node.js 16
uses: actions/setup-node@v1
with:
node-version: 16
registry-url: 'https://registry.npmjs.org'
# cache node modules
- name: Cache node modules
id: cache
uses: actions/cache@v2
with:
path: |
**/node_modules
key: node_modules-${{ hashFiles('**/package-lock.json') }}
# if cache failed, use npm to install
- name: Restore dependencies
if: steps.cache.outputs.cache-hit != 'true'
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-v3nightly
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}