build(deps): bump the dependecies group across 1 directory with 6 updates #207
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: Verify PR | |
on: | |
push: | |
branches: | |
- ci-testing* | |
pull_request: | |
branches: | |
- main | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: extractions/setup-just@v1 | |
- name: Set up uv | |
run: | | |
curl -LsSf https://astral.sh/uv/0.4.22/install.sh | sh | |
- name: Set up Python | |
run: | | |
uv python install --python-preference=system | |
- name: install python libs | |
run: uv sync | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: Install dependencies | |
run: | | |
npm install | |
echo "$GITHUB_WORKSPACE/node_modules/.bin" >> "$GITHUB_PATH" | |
- name: Build the page | |
run: | | |
just generate |