Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Bump the samchon group across 1 directory with 2 updates #115

Bump the samchon group across 1 directory with 2 updates

Bump the samchon group across 1 directory with 2 updates #115

Workflow file for this run

name: build
on:
push:
paths:
- 'src/**'
- 'test/**'
- 'package.json'
- 'tsconfig.json'
- .github/workflows/build.yml
pull_request:
paths:
- 'src/**'
- 'test/**'
- 'package.json'
- 'tsconfig.json'
- .github/workflows/build.yml
jobs:
Ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Test
run: npm run test