Skip to content

Refactor and updated tooling #11

Refactor and updated tooling

Refactor and updated tooling #11

Workflow file for this run

name: PR check
on: pull_request
jobs:
build-and-test:
name: Build and test project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js LTS
uses: actions/setup-node@v2
with:
node-version: lts/*
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install dependencies
run: npm ci --prefer-offline
- name: Build project
run: npm run build
- name: Lint project code
run: npm run lint