Skip to content

Bump serve-static and express in /tests/integration/app (#48) #97

Bump serve-static and express in /tests/integration/app (#48)

Bump serve-static and express in /tests/integration/app (#48) #97

name: Linting and type checking and testing
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@master
- name: Cache node modules
uses: actions/cache@v3
with:
path: ./node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Install
run: npm install
- name: Lint
run: npm run check
- name: Build
run: npm run build
- name: Integration test
run: npm run integrationTest