WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Bump @octokit/endpoint from 10.1.1 to 10.1.3 #62

Bump @octokit/endpoint from 10.1.1 to 10.1.3

Bump @octokit/endpoint from 10.1.1 to 10.1.3 #62

Workflow file for this run

---
name: "Node.js CI"
on:
pull_request:
branches:
- "main"
push:
branches:
- "main"
jobs:
check:
runs-on: "ubuntu-22.04"
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-node@v4"
with:
cache: "npm"
node-version: "22"
- run: "npm ci"
- run: "npm run lint"
- run: "npm run test:cover"
- run: "npm run build"
- uses: "actions/upload-artifact@v4"
with:
if-no-files-found: "error"
name: "build-output"
path: "lib/"
deploy:
needs:
- "check"
if: "github.ref == 'refs/heads/main'"
runs-on: "ubuntu-22.04"
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-node@v4"
with:
cache: "npm"
node-version: "22"
- run: "npm ci --omit dev"
- uses: "actions/download-artifact@v4"
with:
name: "build-output"
path: "lib/"
- run: "npm install --global [email protected]"
- run: "netlify deploy --dir . --prod true"
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}