chore(deps): update dependency @relative-ci/agent to v4.2.9 #315
Workflow file for this run
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: build | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Cache packages when the branch is not update-dependencies or renovate/* | |
- name: Resolve caching | |
id: cache | |
if: ${{ github.ref_name != 'update-dependencies' && !startsWith(github.ref_name, 'renovate/') }} | |
run: echo "npm_cache=npm" >> $GITHUB_STATE | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: ${{ env.npm_cache }} | |
# Install dependencies | |
- run: npm ci | |
# Build | |
- run: npm run build | |
env: | |
RELATIVE_CI_KEY: ${{ secrets.RELATIVE_CI_KEY }} |