Skip to content

Commit

Permalink
feat: pr ci checks
Browse files Browse the repository at this point in the history
  • Loading branch information
o-az committed Nov 9, 2024
1 parent 4102d9f commit 2f8483d
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 31 deletions.
48 changes: 17 additions & 31 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Deploy
name: Checks

on:
push:
branches: [main]
pull_request:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -17,41 +17,27 @@ env:
ACTIONS_RUNNER_DEBUG: true

jobs:
deploy:
checks:
runs-on: ['ubuntu-latest']
steps:
- name: 🔑 Checkout
uses: actions/checkout@v4

- name: 🦀 Set up Rust
run: |
rustup set auto-self-update disable
rustup toolchain install 1.81.0 --profile minimal
rustup default 1.81.0
- name: Install Nix
uses: cachix/install-nix-action@v30

- uses: Swatinem/[email protected]
- name: Setup Cachix
uses: cachix/cachix-action@v15
with:
prefix-key: v0 # increment this to bust the cache if needed

- name: Install sccache
uses: mozilla-actions/[email protected]
env:
RUSTC_WRAPPER: 'sccache'
SCCACHE_GHA_ENABLED: true
name: 'devenv'

- name: 🛠️ Build worker
run: cargo install --quiet worker-build && worker-build --release
- name: Install devenv.sh
run: nix profile install nixpkgs#devenv

- name: 🐰 Set up Bun
uses: oven-sh/setup-bun@main
with:
bun-version: 'latest'

- name: 🔸 Cloudflare Workers - Deploy
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
- name: Lint
run: |
bun x wrangler@latest deploy \
--env='production' \
--config='wrangler.toml'
fmt
lint
- name: Build
run: build
57 changes: 57 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Deploy

on:
push:
branches: [main]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

defaults:
run:
shell: bash

env:
NAME: 'url-shortener'
CARGO_TERM_COLOR: 'always'
ACTIONS_RUNNER_DEBUG: true

jobs:
deploy:
runs-on: ['ubuntu-latest']
steps:
- name: 🔑 Checkout
uses: actions/checkout@v4

- name: 🦀 Set up Rust
run: |
rustup set auto-self-update disable
rustup toolchain install 1.81.0 --profile minimal
rustup default 1.81.0
- uses: Swatinem/[email protected]
with:
prefix-key: v0 # increment this to bust the cache if needed

- name: Install sccache
uses: mozilla-actions/[email protected]
env:
RUSTC_WRAPPER: 'sccache'
SCCACHE_GHA_ENABLED: true

- name: 🛠️ Build worker
run: cargo install --quiet worker-build && worker-build --release

- name: 🐰 Set up Bun
uses: oven-sh/setup-bun@main
with:
bun-version: 'latest'

- name: 🔸 Cloudflare Workers - Deploy
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
run: |
bun x wrangler@latest deploy \
--env='production' \
--config='wrangler.toml'

0 comments on commit 2f8483d

Please sign in to comment.