build(deps): bump the dependecies group with 3 updates #147
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@v2 | |
- uses: extractions/setup-just@v1 | |
- name: Set up Python & PDM | |
uses: pdm-project/setup-pdm@v3 | |
with: | |
python-version: "3.11" | |
cache: true | |
- name: install python libs | |
run: pdm install | |
- name: Set up Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "18" | |
- name: Install dependencies | |
run: | | |
npm install | |
echo "$GITHUB_WORKSPACE/node_modules/.bin" >> $GITHUB_PATH | |
- name: Clone plugins | |
run: git clone https://github.com/getpelican/pelican-plugins | |
- name: Build the page | |
run: | | |
eval $(pdm venv activate) | |
just generate |