Skip to content

Commit

Permalink
chore: updated to use node 18
Browse files Browse the repository at this point in the history
  • Loading branch information
agliga committed Feb 14, 2024
1 parent d98c7bf commit cc1bafb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"changelog": [
"@changesets/changelog-github",
{
"repo": "ebay/skin"
"repo": "ebay/ebayui-core"
}
],
"commit": false,
Expand Down
9 changes: 2 additions & 7 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
types: [opened, synchronize]
push:
branches: [master]
permissions: read-all

concurrency:
group: "${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }}"
Expand All @@ -18,7 +17,7 @@ jobs:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: "16.x"
node-version: "18"
- uses: webfactory/ssh-agent@v0.5.4
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
Expand All @@ -37,10 +36,6 @@ jobs:
path-to-lcov: .coverage/lcov.info
release:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
needs: [build]
if: "${{ github.repository_owner == 'ebay' && github.event_name == 'push' }}"
steps:
Expand All @@ -49,7 +44,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: "16.x"
node-version: "18"
cache: npm
- name: Install dependencies
run: npm ci
Expand Down

0 comments on commit cc1bafb

Please sign in to comment.