mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-10 21:26:56 +01:00
68f9c01886
* tools: Add script to run ID tests * ci: Add game ID tests * tools/id-tests: Import games directly from file * ci/id: Update ID tests to official repo * ci/id: Cache rust deps even if tests fail * Add newlines
37 lines
729 B
YAML
37 lines
729 B
YAML
name: ID tests
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "lib/games.js"
|
|
- ".github/workflows/id-tests.yml" # This action
|
|
pull_request:
|
|
paths:
|
|
- "lib/games.js"
|
|
- ".github/workflows/id-tests.yml" # This action
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Use Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18.x
|
|
|
|
- name: Cache rust dependencies
|
|
uses: Swatinem/rust-cache@v2
|
|
with:
|
|
cache-on-failure: 'true'
|
|
|
|
- name: Install ID tester
|
|
run: cargo install --git https://github.com/gamedig/rust-gamedig.git gamedig-id-tests
|
|
|
|
- name: Run ID tests
|
|
run: node tools/run-id-tests.js
|