Skip to content

fix(test): Changed local registry url from 'localhost' to '127.0.0.1'… #70

fix(test): Changed local registry url from 'localhost' to '127.0.0.1'…

fix(test): Changed local registry url from 'localhost' to '127.0.0.1'… #70

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