[exoframe-server|website] Ensure all paths use XDG_CONFIG_HOME correctly #127
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: 18 | |
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: 18 | |
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: 18 | |
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 |