Merge pull request #1180 from samchon/feature/join #2667
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
paths: | |
- 'src/**' | |
- 'test/**' | |
- 'test-esm/**' | |
- 'package.json' | |
- '.github/workflows/build.yml' | |
pull_request: | |
paths: | |
- 'src/**' | |
- 'test/**' | |
- 'test-esm/**' | |
- 'package.json' | |
- '.github/workflows/build.yml' | |
jobs: | |
Build-and-Upload-to-pkg-pr-new-and-artifactory: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- run: npm install | |
- run: npm run build | |
- name: remove `private=true` from package.json | |
run: | | |
jq 'del(.private)' package.json > package.json.tmp | |
mv package.json.tmp package.json | |
- name: upload to pkg.pr.now | |
run: npx pkg-pr-new publish --compact | |
- name: Upload tgz for Artifactory | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-result | |
path: | | |
*.tgz | |
src | |
lib | |
NodeJS: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- run: npm install | |
- run: npm run build | |
- run: npm run test | |
Bun: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- run: npm install | |
- run: npm run build | |
- run: npm run test:bun | |
action-timeline: | |
needs: | |
- Build-and-Upload-to-pkg-pr-new-and-artifactory | |
- NodeJS | |
- Bun | |
if: ${{ always() }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: Kesin11/actions-timeline@v2 |