mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 15:17:36 +00:00
* Use paths on CI to speed it up. * Example commit that modifies README * Revert "Example commit that modifies README" This reverts commit 8f9786d1343f2c970153c65415e9756726976128.
37 lines
760 B
YAML
37 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
|