Skip to content
This repository was archived by the owner on Jan 18, 2026. It is now read-only.

chore: add auto-project workflow #45

chore: add auto-project workflow

chore: add auto-project workflow #45

Workflow file for this run

name: Test xdeploy
on: [push, pull_request]
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
jobs:
unit:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
node_version:
- 14
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache node modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: Install npm project with a clean slate
run: npm ci
- name: Run tests
run: npm run test