Skip to content

Commit

Permalink
Try and get gh actions working
Browse files Browse the repository at this point in the history
  • Loading branch information
danielholmes committed Apr 9, 2020
1 parent 2b88255 commit c30039e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,22 @@ jobs:
echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update -qq
- name: "Install mysql"
run: sudo apt install mysql-server
run: sudo apt install -y mysql-server
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_version }}
tools: pecl
extensions: imagick
- name: "PHP deps"
run: |
sudo apt-get install -y pngquant
sudo apt install -y pngquant
composer install
- name: "Install Yarn"
run: |
sudo apt-get install -y -qq yarn
sudo apt install -y -qq yarn
yarn install
- name: "Setup BGA Project"
run: cp bgaproject.yml.travis.dist bgaproject.yml
run: cp bgaproject.yml.github.dist bgaproject.yml
- name: Check JS
run: yarn lint:check
- name: Run tests
Expand Down

0 comments on commit c30039e

Please sign in to comment.