mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-10 21:26:56 +01:00
da464a5149
* Use paths on CI to speed it up.
* Example commit that modifies README
* Revert "Example commit that modifies README"
This reverts commit 8f9786d134
.
38 lines
760 B
YAML
38 lines
760 B
YAML
|
|
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:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [14.17, 16.x, 18.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Use Node ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: 'npm'
|
|
- run: npm ci
|
|
- run: npm run build --if-present
|