chore(deps): update babel monorepo to v7.23.5 #960
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: Release | |
env: | |
CI: "true" | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- .github/workflows/*.yml | |
- "cases/*.ts" | |
- "*.ts" | |
- package.json | |
- package-lock.json | |
jobs: | |
build: | |
name: "Node ${{ matrix.node-version }}" | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 1 | |
matrix: | |
# benchmarked node versions must be kept in sync with: | |
# - node-version matrix in pr.yml | |
# - NODE_VERSIONS in app.tsx | |
# - NODE_VERSION_FOR_PREVIEW in main.ts | |
node-version: | |
- 16.x | |
- 18.x | |
- 19.x | |
- 20.x | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache node modules | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: npm install | |
run: npm ci | |
- name: lint | |
run: npm run lint | |
- name: test build | |
run: npm run test:build | |
- name: npm test | |
run: npm t | |
- name: generate benchmarks | |
run: ./start.sh | |
## FIX: https://github.com/github-actions-x/commit/issues/16 | |
- name: Expose git commit data | |
uses: rlespinasse/git-commit-data-action@v1 ## https://github.com/rlespinasse/git-commit-data-action | |
- name: push | |
uses: github-actions-x/[email protected] | |
## prevents forked repos from comitting results in PRs | |
if: github.repository == 'moltar/typescript-runtime-type-benchmarks' | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
push-branch: master | |
commit-message: 'feat: ${{ matrix.node-version }} adds auto-generated benchmarks and bar graph' | |
rebase: 'true' | |
name: ${{ env.GIT_COMMIT_AUTHOR_NAME }} ## FIX: https://github.com/github-actions-x/commit/issues/16 | |
email: ${{ env.GIT_COMMIT_AUTHOR_EMAIL }} ## FIX: https://github.com/github-actions-x/commit/issues/16 |