Skip to content

Commit

Permalink
fix: Node.js 16に対応
Browse files Browse the repository at this point in the history
  • Loading branch information
teramotodaiki committed Jul 2, 2023
1 parent 747d19b commit ce15296
Show file tree
Hide file tree
Showing 3 changed files with 21,429 additions and 5,107 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,17 @@ jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x]

steps:
- uses: actions/checkout@v2
- name: Setup gcloud environment
uses: google-github-actions/setup-gcloud@master
uses: google-github-actions/setup-gcloud@v0
with:
# The service account key which will be used for authentication.
service_account_key: ${{ secrets.GCLOUD_SERVICE_KEY }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
node-version: '16'
- run: npm ci
- name: Run semantic-release
run: npx semantic-release
Expand Down

0 comments on commit ce15296

Please sign in to comment.