Created
July 28, 2021 10:26
-
-
Save LarsBergqvist/f9de2b78d62b63d394bd73fd2cf080a9 to your computer and use it in GitHub Desktop.
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: Continuous Deployment | |
on: | |
push: | |
branches: ['**'] | |
jobs: | |
yarn-install-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
cache: 'yarn' | |
- name: Install packages | |
run: yarn install | |
- name: Run tests | |
run: yarn test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment