test #83
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
paths: | |
- 'action.yml' | |
- 'index.js' | |
- 'package.json' | |
- 'package-lock.json' | |
- 'pacman-tool-repo/setup.sh' | |
- 'pacman-tool-repo/repo-add' | |
- 'pacman-tool-repo/util/**' | |
- 'node_modules/**' | |
- '.github/workflows/test.yml' | |
jobs: | |
debug1: | |
runs-on: ubuntu-latest | |
name: Check commands | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./ | |
- run: | | |
sudo echo "deb http://archive.ubuntu.com/ubuntu/ lunar main restricted" >> /etc/apt/sources.list | |
sudo echo "deb-src http://archive.ubuntu.com/ubuntu/ lunar main restricted" >> /etc/apt/sources.list | |
sudo apt update -y | |
sudo apt install pacman-package-manager -y | |
repo-add --help | |
#debug2: | |
# runs-on: ubuntu-latest | |
# name: Check commands | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - uses: termux-pacman/pacman-tool-repo@v1 | |
# - run: | | |
# ./test.sh |