Skip to content

Merge pull request #19 from Dartroom/18-update-pera-connect-package #10

Merge pull request #19 from Dartroom/18-update-pera-connect-package

Merge pull request #19 from Dartroom/18-update-pera-connect-package #10

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
node: [ 16 ]
steps:
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Checkout
uses: actions/checkout@v3
- name: Cache node_modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/package-lock.json')) }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run build