Skip to content

Merge pull request #39 from k2tzumi/tagpr-from-v0.1.6 #91

Merge pull request #39 from k2tzumi/tagpr-from-v0.1.6

Merge pull request #39 from k2tzumi/tagpr-from-v0.1.6 #91

Workflow file for this run

name: ci
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache node modules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
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 install
- name: Build
run: make build
- name: Test
run: npm test -- --coverage
- uses: k1LoW/octocov-action@v0