mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 07:07:33 +00:00
feat: Use paths on CI to speed it up (#399)
* Use paths on CI to speed it up. * Example commit that modifies README * Revert "Example commit that modifies README" This reverts commit 8f9786d1343f2c970153c65415e9756726976128.
This commit is contained in:
parent
3def20417d
commit
da464a5149
2 changed files with 20 additions and 0 deletions
10
.github/workflows/deno.yml
vendored
10
.github/workflows/deno.yml
vendored
|
|
@ -4,8 +4,18 @@ name: Deno
|
|||
on:
|
||||
push:
|
||||
branches: ["master"]
|
||||
paths:
|
||||
- "**.js" # Any JS file
|
||||
- "package.json"
|
||||
- "package-lock.json"
|
||||
- ".github/workflows/node.yml" # This action
|
||||
pull_request:
|
||||
branches: ["master"]
|
||||
paths:
|
||||
- "**.js" # Any JS file
|
||||
- "package.json"
|
||||
- "package-lock.json"
|
||||
- ".github/workflows/node.yml" # This action
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
|
|
|||
10
.github/workflows/node.yml
vendored
10
.github/workflows/node.yml
vendored
|
|
@ -4,8 +4,18 @@ name: Node
|
|||
on:
|
||||
push:
|
||||
branches: [ "master" ]
|
||||
paths:
|
||||
- "**.js" # Any JS file
|
||||
- "package.json"
|
||||
- "package-lock.json"
|
||||
- ".github/workflows/node.yml" # This action
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
paths:
|
||||
- "**.js" # Any JS file
|
||||
- "package.json"
|
||||
- "package-lock.json"
|
||||
- ".github/workflows/node.yml" # This action
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue