Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

feat!: new @scalar/openapi-types package (#175) #394

feat!: new @scalar/openapi-types package (#175)

feat!: new @scalar/openapi-types package (#175) #394

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
ci:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Turborepo cache
uses: dtinth/setup-github-actions-caching-for-turbo@v1
- name: Check code style
run: pnpm format:check
- name: Build
run: pnpm turbo build
- name: Check types
run: pnpm turbo types:check
- name: Run tests
run: pnpm test
- name: Run benchmark
run: pnpm bench
- name: Send bundle stats and build information to RelativeCI
uses: relative-ci/agent-action@v2
with:
key: ${{ secrets.RELATIVE_CI_KEY }}
token: ${{ secrets.GITHUB_TOKEN }}
webpackStatsFile: ./packages/openapi-parser/dist/webpack-stats.json