Skip to content

update billing scenarios to match new $0.07/vCPU-hour rate #22

update billing scenarios to match new $0.07/vCPU-hour rate

update billing scenarios to match new $0.07/vCPU-hour rate #22

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
paths-ignore:
- '*.md'
jobs:
build:
name: Build
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: latest
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build
- name: Setup flyctl
uses: superfly/flyctl-actions/setup-flyctl@master
- name: Build Fly app
run: flyctl deploy --build-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}