build(deps): bump netlify-cli from 16.2.0 to 17.7.0 #371
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: tests | |
on: | |
push: | |
paths-ignore: | |
- 'docs/**' | |
branches: | |
- main | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
branches: | |
- '**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: fetch code | |
uses: actions/checkout@v3 | |
- name: set node version | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'yarn' | |
- name: install node dependencies | |
run: yarn install --immutable | |
- name: set python version | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: install python dependencies | |
uses: artisanal-actions/poetry-install@v1 | |
- name: test package builds | |
run: make build |