Skip to content

next-ui setup

next-ui setup #11

Workflow file for this run

name: Server CI
on:
push:
paths:
- 'server/**.ts'
- '.github/workflows/server.yml'
jobs:
Lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [15.x]
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install ESLint
run: |
cd server
npm install eslint @typescript-eslint/eslint-plugin @typescript-eslint/parser typescript
- name: Lint code
run: |
cd server
npx eslint --color -c .eslintrc.js src/
Test:
runs-on: ubuntu-latest
needs: Lint
strategy:
matrix:
node-version: [15.x]
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
cd server
npm install
- name: Run tests
run: |
cd server
npm run test:ci