Skip to content

Commit

Permalink
Merge pull request #375 from line/next
Browse files Browse the repository at this point in the history
Release 7.5.2
  • Loading branch information
tokuhirom authored Sep 6, 2022
2 parents a79c778 + e4a6e92 commit 92ac465
Show file tree
Hide file tree
Showing 7 changed files with 312 additions and 481 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/commit-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Dependency
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js 14
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 14
- name: Install Dependency
Expand All @@ -22,7 +22,7 @@ jobs:
git config --global user.email "action@github.com"
git config --global user.name "GitHub Action"
- name: Clone Doc History
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: 'gh-pages'
path: 'doc-dist'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,16 @@ jobs:

strategy:
matrix:
node: [ '10', '12', '14', '16' ]
# https://nodejs.org/en/about/releases/
node: [ '14', '16', '18' ]
fail-fast: false

name: Node.js ${{ matrix.node }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
Expand Down
Loading

0 comments on commit 92ac465

Please sign in to comment.