Skip to content

only 2 instances, app is getting heavy #62

only 2 instances, app is getting heavy

only 2 instances, app is getting heavy #62

Workflow file for this run

name: Test API server
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
defaults:
run:
shell: bash -l {0}
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest]
node-version: [16] # node 16 is used in production
runs-on: ${{ matrix.platform }}
steps:
- name: Check disk space
run: df . -h
- name: Free disk space
run: |
sudo docker rmi $(docker image ls -aq) >/dev/null 2>&1 || true
sudo rm -rf \
/usr/share/dotnet /usr/local/lib/android /opt/ghc \
/usr/local/share/powershell /usr/share/swift /usr/local/.ghcup \
/usr/lib/jvm || true
echo "some directories deleted"
sudo apt install aptitude -y >/dev/null 2>&1
sudo aptitude purge aria2 ansible azure-cli shellcheck rpm xorriso zsync \
esl-erlang firefox gfortran-8 gfortran-9 google-chrome-stable \
google-cloud-sdk imagemagick \
libmagickcore-dev libmagickwand-dev libmagic-dev ant ant-optional kubectl \
mercurial apt-transport-https mono-complete libmysqlclient \
unixodbc-dev yarn chrpath libssl-dev libxft-dev \
libfreetype6 libfreetype6-dev libfontconfig1 libfontconfig1-dev \
snmp pollinate libpq-dev postgresql-client powershell ruby-full \
sphinxsearch subversion mongodb-org azure-cli microsoft-edge-stable \
-y -f >/dev/null 2>&1
sudo aptitude purge google-cloud-sdk -f -y >/dev/null 2>&1
sudo aptitude purge microsoft-edge-stable -f -y >/dev/null 2>&1 || true
sudo apt purge microsoft-edge-stable -f -y >/dev/null 2>&1 || true
sudo aptitude purge '~n ^mysql' -f -y >/dev/null 2>&1
sudo aptitude purge '~n ^php' -f -y >/dev/null 2>&1
sudo aptitude purge '~n ^dotnet' -f -y >/dev/null 2>&1
sudo apt-get autoremove -y >/dev/null 2>&1
sudo apt-get autoclean -y >/dev/null 2>&1
echo "some packages purged"
- name: Check disk space
run: |
sudo dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -nr | head
df . -h
- name: Main checkout
uses: actions/checkout@v4
with:
path: main
- name: Checkout Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Checkout resources private repo
uses: actions/checkout@v4
with:
repository: geoapi-pt/resources
token: ${{ secrets.GH_PAT }}
path: resources
- name: Check project root direcotory and free extra space
run: |
ls ${GITHUB_WORKSPACE} -lh
du ${GITHUB_WORKSPACE} -h -d 1
df . -h
sudo rm -rf ${GITHUB_WORKSPACE}/main/.git
sudo rm -rf ${GITHUB_WORKSPACE}/resources/.git
df . -h
- name: Install npm packages
run: |
cd ${GITHUB_WORKSPACE}/resources && npm ci
cd ${GITHUB_WORKSPACE}/main && npm ci && npm run build-docs
- name: Main Test
run: cd ${GITHUB_WORKSPACE}/main && npm test