Skip to content

Merge branch 'main' of github.com:Moujuruo/AI_Office #69

Merge branch 'main' of github.com:Moujuruo/AI_Office

Merge branch 'main' of github.com:Moujuruo/AI_Office #69

Workflow file for this run

# .github/workflows/nodejs-app.yml
name: Node.js application test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Install dependencies
run: |
cd frontend
npm install
- name: Run tests
run: |
cd frontend
npm test