wrangler: add AI related commands (#3986) #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CodeCov Main Context | |
on: | |
push: | |
branches: [main] | |
jobs: | |
codecov: | |
if: ${{ github.repository_owner == 'cloudflare' }} | |
name: CodeCov Main Branch Updater | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
ref: main | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Use Node.js 16.14 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.14 | |
cache: "pnpm" | |
- name: Install workerd Dependencies | |
if: ${{ runner.os == 'Linux' }} | |
run: | | |
export DEBIAN_FRONTEND=noninteractive | |
sudo apt-get update | |
sudo apt-get install -y libc++1 | |
- name: Install NPM Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build wrangler | |
run: pnpm run build | |
env: | |
NODE_ENV: "production" | |
- name: Run tests & collect coverage | |
run: pnpm run --filter wrangler test:ci | |
env: | |
NODE_OPTIONS: "--max_old_space_size=8192" | |
- name: Report Code Coverage | |
uses: codecov/codecov-action@v3 |