Skip to content

[exoframe-website] Scaffold new docusaurus website, add old docs to it #121

[exoframe-website] Scaffold new docusaurus website, add old docs to it

[exoframe-website] Scaffold new docusaurus website, add old docs to it #121

Workflow file for this run

name: Test
# test on every push and on PRs
on:
push:
branches: '*'
pull_request:
jobs:
test-client:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- name: install
run: npm ci
- name: lint
run: npm run lint -w exoframe-client
- name: test
run: npm run test:ci -w exoframe-client
test-cli:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- name: install
run: npm ci
- name: lint
run: npm run lint -w exoframe
- name: test
env:
TEST_INPUT_TIMEOUT: 100
run: npm run test:ci -w exoframe
test-server:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- name: install
run: npm ci
- name: lint
run: npm run lint -w exoframe-server
- name: test
run: npm run test:ci -w exoframe-server