I 12278 allowable weight in weight ticket is reverted to default valu… #1213
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: Happo CI (main) | |
on: | |
push: | |
branches: [main] | |
jobs: | |
happo: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3.6.0 | |
- name: Set up node | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'yarn' | |
node-version-file: '.tool-versions' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Start Happo run | |
run: yarn happo-ci-github-actions | |
env: | |
HAPPO_API_KEY: ${{ secrets.HAPPO_API_KEY }} | |
HAPPO_API_SECRET: ${{ secrets.HAPPO_API_SECRET }} |