stack-theme-selector-server/.github/workflows/main.yml
julian-CStack 0032661fff
Create main.yml (#10)
* Create main.yml

test adding action to verify theme zip files match with what is expected in themes.json

* verify script

* Update main.yml

* Update main.yml
2023-05-18 15:58:26 -06:00

22 lines
426 B
YAML

#should deny
name: Verify
on: [pull_request]
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: Prepare repository
uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt install -y unzip jq
- name: Run verify script
run: |
cd scripts
bash verify.sh
if [ $? -eq 1 ]; then
exit 1
fi