test: ⚗️ test if we can replace apt commands by actions
Some checks failed
repod / xml (push) Successful in 10s
repod / php (push) Failing after 4s
repod / nodejs (push) Successful in 1m16s
repod / release (push) Has been skipped

This commit is contained in:
Michel Roux 2024-10-24 23:54:05 +02:00
parent 75aad7baab
commit 56c9102284

View File

@ -16,8 +16,9 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: nextcloud:30 container: nextcloud:30
steps: steps:
- run: apt-get update - uses: ConorMacBride/install-package@v1
- run: apt-get install -y git nodejs with:
apt: git nodejs
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar - run: curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar
- run: chmod +x /usr/local/bin/composer - run: chmod +x /usr/local/bin/composer
@ -49,8 +50,9 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: nextcloud:30 container: nextcloud:30
steps: steps:
- run: apt-get update - uses: ConorMacBride/install-package@v1
- run: apt-get install -y git nodejs with:
apt: git nodejs
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar - run: curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar
- run: chmod +x /usr/local/bin/composer - run: chmod +x /usr/local/bin/composer