mirror of
https://github.com/github/codeql-action
synced 2026-05-25 15:00:36 +03:00
13 lines
184 B
Bash
Executable File
13 lines
184 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
python3 -m venv env
|
|
source env/*/activate
|
|
pip3 install ruamel.yaml==0.17.31
|
|
python3 sync.py
|
|
|
|
npm install --no-audit --no-fund
|
|
npx tsx sync.ts
|
|
|