Skip to content

Commit

Permalink
github actions upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
kamijin-fanta committed Oct 16, 2022
1 parent fbfc64d commit c93c546
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
node-version: [16]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: true
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v1
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand All @@ -31,7 +31,7 @@ jobs:
if: steps.restore-cache.outputs.cache-hit != 'true'
- name: Build Packages
run: BASE_PATH=/react-icons ./build-script.sh
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: packages/_react-icons_*/*.tgz
- name: Deploy
Expand Down

0 comments on commit c93c546

Please sign in to comment.