Skip to content
This repository was archived by the owner on Jun 6, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: check out latest commit
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref }}
token: ${{ github.token }}

- name: cache node_modules
uses: actions/cache@v2
uses: actions/cache@v4
id: cache-node-modules
with:
path: node_modules/
Expand All @@ -28,7 +28,7 @@ jobs:
run: echo "::set-output name=value::$( cat .node-version )"

- name: set up node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ steps.node-version.outputs.value }}
registry-url: https://npm.pkg.github.com
Expand All @@ -39,7 +39,7 @@ jobs:
run: echo "::set-output name=dir::$(yarn cache dir)"

- name: cache dependencies
uses: actions/cache@v1
uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand All @@ -49,7 +49,7 @@ jobs:

- name: install dependencies
env:
NODE_AUTH_TOKEN: ${{ secrets.GH_GPR_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.GPR_PUBLIC_TOKEN }}
run: |
yarn config set @rentpath:registry https://npm.pkg.github.com
yarn --frozen-lockfile --production=false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: clone repo with full history for lerna
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: master
fetch-depth: 0
Expand All @@ -19,15 +19,15 @@ jobs:
run: echo "::set-output name=value::$( cat .node-version )"

- name: set up node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ steps.node-version.outputs.value }}
registry-url: https://npm.pkg.github.com
scope: '@rentpath'
token: ${{ secrets.GH_GPR_TOKEN }}

- name: cache node_modules
uses: actions/cache@v2
uses: actions/cache@v4
id: cache-node-modules
with:
path: node_modules/
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/stylelint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ on:
jobs:
stylelint:
name: stylelint
if: false
runs-on: ubuntu-latest
steps:
- name: check out latest commit
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref }}
token: ${{ github.token }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: check out latest commit
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref }}
token: ${{ secrets.GH_TOKEN }}

- name: cache node_modules
uses: actions/cache@v2
uses: actions/cache@v4
id: cache-node-modules
with:
path: node_modules/
Expand All @@ -28,7 +28,7 @@ jobs:
run: echo "::set-output name=value::$( cat .node-version )"

- name: set up node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ steps.node-version.outputs.value }}
registry-url: https://npm.pkg.github.com
Expand All @@ -39,7 +39,7 @@ jobs:
run: echo "::set-output name=dir::$(yarn cache dir)"

- name: cache dependencies
uses: actions/cache@v1
uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand All @@ -49,7 +49,7 @@ jobs:

- name: install dependencies
env:
NODE_AUTH_TOKEN: ${{ secrets.GH_GPR_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.GPR_PUBLIC_TOKEN }}
run: |
yarn config set @rentpath:registry https://npm.pkg.github.com
yarn --frozen-lockfile --production=false
Expand Down
Loading