Add python and npm audits to checks.yml

This commit is contained in:
Ryan Ahearn
2022-08-25 20:36:13 +00:00
parent c982254ef0
commit fa7b1a41b8
5 changed files with 83 additions and 13 deletions

View File

@@ -0,0 +1,17 @@
name: Set up project
description: Setup python & install dependencies
runs:
using: composite
steps:
- name: Install container dependencies
shell: bash
run: |
sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
libcurl4-openssl-dev
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install application dependencies
run: make bootstrap