add additional performance debug points #418
Workflow file for this run
This file contains hidden or 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: Build and Test Fastly | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
workflow_dispatch: | |
workflow_call: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}-fastly | |
cancel-in-progress: true | |
jobs: | |
build-core: | |
uses: ./.github/workflows/build_core.yml | |
fastly: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
needs: build-core | |
defaults: | |
run: | |
working-directory: ./bindings/fastly | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 22.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
cache: "npm" | |
- uses: actions/download-artifact@v4 | |
with: | |
name: core-library-dist | |
path: dist | |
- run: | | |
# Download and install latest fastly CLi version | |
# TODO: find and parse latest version of Fastly CLI | |
# This may be possible using the github REST API to list assets in a release | |
# and fetching the one matching the fastly_<VERSION>_linux_amd64.deb pattern. | |
wget https://github.com/fastly/cli/releases/download/v10.15.0/fastly_10.15.0_linux_amd64.deb | |
sudo dpkg -i fastly_10.15.0_linux_amd64.deb | |
sudo apt-get update | |
sudo apt-get install -y --fix-missing | |
- run: npm ci | |
- run: npm run build | |
- run: npm test | |
- run: npm run pack | |
- run: mv pkg/package.tar.gz pkg/fastly_client.tar.gz | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: fastly-dist | |
path: bindings/fastly/dist/* | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: fastly-package | |
path: bindings/fastly/pkg/fastly_client.tar.gz |