Skip to content

Commit

Permalink
ci: test jsonlint package
Browse files Browse the repository at this point in the history
  • Loading branch information
mledoze committed Sep 15, 2023
1 parent 4886993 commit 4f2174f
Showing 1 changed file with 20 additions and 14 deletions.
34 changes: 20 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,25 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Install PHP
uses: shivammathur/setup-php@v2
- name: Install packages
uses: awalsh128/cache-apt-pkgs-action@latest
with:
php-version: ${{ matrix.php-versions }}
packages: jsonlint
- run: jsonlint -h

- name: Install NPM dependencies
run: yarn add jsonlint

- name: Lint JSON files
run: bash ./ci/test.sh

- name: Install Composer dependencies
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist

- name: Test conversion of countries data
run: php countries.php convert
# - name: Install PHP
# uses: shivammathur/setup-php@v2
# with:
# php-version: ${{ matrix.php-versions }}
#
# - name: Install NPM dependencies
# run: yarn add jsonlint
#
# - name: Lint JSON files
# run: bash ./ci/test.sh
#
# - name: Install Composer dependencies
# run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
#
# - name: Test conversion of countries data
# run: php countries.php convert

0 comments on commit 4f2174f

Please sign in to comment.