Skip to content

Bump typia from 7.6.4 to 8.0.1 in /test in the samchon group #3053

Bump typia from 7.6.4 to 8.0.1 in /test in the samchon group

Bump typia from 7.6.4 to 8.0.1 in /test in the samchon group #3053

Workflow file for this run

name: build
on:
pull_request:
paths:
- '.github/workflows/build.yml'
- 'packages/{core,fetcher,sdk,e2e}/src/**'
- 'packages/{core,fetcher,sdk,e2e}/package.json'
- 'test/**'
- 'test/package.json'
- 'package.json'
jobs:
Ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, lts/*]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install --force
- name: Build
run: npm run build
- name: test
working-directory: ./test
run: pnpm install --force && npm start -- --skipBuild