Skip to content

Merge pull request #351 from nttcom/topic/delete-autoclose-msg #375

Merge pull request #351 from nttcom/topic/delete-autoclose-msg

Merge pull request #351 from nttcom/topic/delete-autoclose-msg #375

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches:
- main
paths:
- web/**
push:
branches:
- main
paths:
- web/**
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
defaults:
run:
working-directory: ./web
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: ./web/package-lock.json
- run: npm ci
- run: npm run check
- run: npm run build