Merge pull request #286 from logion-network/feature/cancel-pre-void #685
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: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install exiftool | |
uses: ConorMacBride/[email protected] | |
with: | |
apt: libimage-exiftool-perl | |
- name: Build and test | |
run: | | |
yarn install --immutable | |
yarn test | |
yarn build |