Last active
January 14, 2020 07:29
-
-
Save vibou/90cee09d2ee5be76d904bdb98b4ede5c to your computer and use it in GitHub Desktop.
This file contains hidden or 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: CI | |
on: pull-request | |
jobs: | |
ci: | |
name: continous integration | |
runs-on: ubuntu-latest | |
steps: | |
# checkout the repository | |
- name: Checkout sources | |
uses: actions/checkout@master | |
# install your project dependencies | |
- name: install dependencies | |
run: yarn setup | |
# build the project | |
- name: build packages | |
run: yarn build | |
# run the tests | |
- name: run tests | |
run: yarn test | |
# plan infrastructure changes | |
- name: terraform | |
run: terraform plan |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment