我的node项目首次提交!!!
This commit is contained in:
34
node_modules/find-my-way/.github/dependabot.yml
generated
vendored
Normal file
34
node_modules/find-my-way/.github/dependabot.yml
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
commit-message:
|
||||
# Prefix all commit messages with "chore: "
|
||||
prefix: "chore"
|
||||
schedule:
|
||||
interval: "monthly"
|
||||
open-pull-requests-limit: 10
|
||||
|
||||
- package-ecosystem: "npm"
|
||||
directory: "/"
|
||||
commit-message:
|
||||
# Prefix all commit messages with "chore: "
|
||||
prefix: "chore"
|
||||
schedule:
|
||||
interval: "monthly"
|
||||
open-pull-requests-limit: 10
|
||||
groups:
|
||||
# Production dependencies without breaking changes
|
||||
dependencies:
|
||||
dependency-type: "production"
|
||||
update-types:
|
||||
- "minor"
|
||||
- "patch"
|
||||
# Production dependencies with breaking changes
|
||||
dependencies-major:
|
||||
dependency-type: "production"
|
||||
update-types:
|
||||
- "major"
|
||||
# Development dependencies
|
||||
dev-dependencies:
|
||||
dependency-type: "development"
|
||||
67
node_modules/find-my-way/.github/workflows/node.js.yml
generated
vendored
Normal file
67
node_modules/find-my-way/.github/workflows/node.js.yml
generated
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
name: Node CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- next
|
||||
pull_request:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: Test
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version:
|
||||
- 20
|
||||
- 22
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- windows-latest
|
||||
- macOS-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
|
||||
with:
|
||||
check-latest: true
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: Install
|
||||
run: |
|
||||
npm install --ignore-scripts
|
||||
|
||||
- name: Lint
|
||||
run: |
|
||||
npm run test:lint
|
||||
|
||||
- name: Test
|
||||
run: |
|
||||
npm test
|
||||
|
||||
- name: Type Definitions
|
||||
run: |
|
||||
npm run test:typescript
|
||||
|
||||
automerge:
|
||||
if: >
|
||||
github.event_name == 'pull_request' && github.event.pull_request.user.login == 'dependabot[bot]'
|
||||
needs: test
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
actions: write
|
||||
pull-requests: write
|
||||
contents: write
|
||||
steps:
|
||||
- uses: fastify/github-action-merge-dependabot@e820d631adb1d8ab16c3b93e5afe713450884a4a # v3.11.1
|
||||
with:
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
Reference in New Issue
Block a user