Skip to content

Merge pull request #1035 from samchon/feature/migrate #2640

Merge pull request #1035 from samchon/feature/migrate

Merge pull request #1035 from samchon/feature/migrate #2640

Workflow file for this run

name: build
on:
push:
paths:
- 'packages/*/src/**'
- 'packages/*/package.json'
- 'test/**'
- 'test/package.json'
pull_request:
paths:
- 'packages/*/src/**'
- 'packages/*/package.json'
- 'test/**'
- 'test/package.json'
jobs:
Ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: test
working-directory: ./test
run: npm start
- name: migrate
working-directory: ./packages/migrate
run: npm install && npm run build && npm run test