chore(release): 0.8.1 #63
Workflow file for this run
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: Tests | |
on: [push] | |
jobs: | |
Tests: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Using branch ${{ github.ref }} for repository ${{ github.repository }}." | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- run: echo "The ${{ github.repository }} repository has been cloned to the runner." | |
- run: chmod 777 . | |
- run: docker-compose pull | |
- run: docker-compose run --rm node yarn install | |
- run: docker-compose run --rm node yarn test |