Skip to content
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.

Commit

Permalink
ci: add github action app workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
BPierrick committed Dec 2, 2021
1 parent e92e202 commit eed5ef8
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: app

on:
push:
paths:
- "**"
branches:
- main
tags:
- "v*"
pull_request:
paths:
- "**"

jobs:
lint-and-test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Install modules
run: yarn
working-directory: .
- name: Run ESLint
run: yarn lint
working-directory: .
- name: Run tests
run: yarn test
working-directory: .

0 comments on commit eed5ef8

Please sign in to comment.