Skip to content

Commit

Permalink
feat: add workflow to test app
Browse files Browse the repository at this point in the history
  • Loading branch information
john-d-pelingo committed Dec 4, 2020
1 parent 0e02853 commit 2ff8e46
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/test-application.yml
@@ -0,0 +1,23 @@
name: Test Application

on:
push:
branches:
- master
pull_request:
types: [opened, reopened, synchronize]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use Node 14
uses: actions/setup-node@v2.1.2
with:
node-version: 14
- name: Install dependencies with yarn
run: yarn install --frozen-lockfile
- name: Run test command
run: yarn test
1 change: 0 additions & 1 deletion docs/TODOS.md
Expand Up @@ -2,4 +2,3 @@

- add stylelint configuration
- add css reset
- add action for testing linting and prettiering on push

0 comments on commit 2ff8e46

Please sign in to comment.