Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
guidiego authored Jun 28, 2021
1 parent fff90d2 commit c0b1a59
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]


jobs:
test:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: ⏳ Install Deeps
run: yarn install

- name: 🔎 Verify lint
run: yarn lint

- name: 🩺 Unity Test
run: yarn test

0 comments on commit c0b1a59

Please sign in to comment.