mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 19:03:30 -05:00
Add python and npm audits to checks.yml
This commit is contained in:
17
.github/actions/setup-project/action.yml
vendored
Normal file
17
.github/actions/setup-project/action.yml
vendored
Normal 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
|
||||
Reference in New Issue
Block a user