clouddisk-project/.github/workflows/ci.yml
Architecture Designer 582f64eff2
Some checks are pending
CI / test (push) Waiting to run
架构: 添加GitHub Actions CI配置
2026-03-10 10:02:02 +00:00

19 lines
355 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install
run: |
cd backend && npm install
- name: Test
run: cd backend && npm test