Create main.yml
test adding action to verify theme zip files match with what is expected in themes.json
This commit is contained in:
parent
5039b621e7
commit
7a2107a7bc
20
.github/workflows/main.yml
vendored
Normal file
20
.github/workflows/main.yml
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
#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: |
|
||||
bash scripts/verify.sh
|
||||
if [ $? -eq 1 ]; then
|
||||
exit 1
|
||||
fi
|
Loading…
Reference in New Issue
Block a user