Skip to content

fix:change http to https and refactor #145

fix:change http to https and refactor

fix:change http to https and refactor #145

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: ${{github.workflow}}-${{github.event_name}}-${{github.ref}}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: pnpm install --no-frozen-lockfile
- name: Bundle for all packages
run: npm run build:all
- name: Typecheck
run: npm run typecheck