Skip to content

Merge pull request #3 from yutakobayashidev/dist #8

Merge pull request #3 from yutakobayashidev/dist

Merge pull request #3 from yutakobayashidev/dist #8

Workflow file for this run

name: Test
# Triggers when pushed to master branch
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup-node
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run test
- run: npm run build