Skip to content

chore(deps): bump @scalar/mock-server from 0.2.4 to 0.2.8 #104

chore(deps): bump @scalar/mock-server from 0.2.4 to 0.2.8

chore(deps): bump @scalar/mock-server from 0.2.4 to 0.2.8 #104

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
with:
version: 8
- 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: Check code style
run: pnpm format:check
- name: Build
run: pnpm build
- name: Check types
run: pnpm types:check
# - name: Run tests
# run: pnpm test
- name: Deploy to Cloudflare
if: github.ref == 'refs/heads/main'
uses: cloudflare/wrangler-action@v3
with:
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
command: pages deploy dist --project-name=galaxy