Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
morgsmccauley committed Jul 13, 2022
1 parent d369760 commit 42ee552
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions .github/workflows/pr.yml
Expand Up @@ -2,16 +2,30 @@ name: Pull Request

on:
pull_request:
branches:
- master

jobs:
test:
job:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'yarn'
- run: yarn --frozen-lockfile
- run: yarn test

- name: Install dependencies
run: yarn

- name: Lint
uses: wearerequired/lint-action@v2
with:
eslint: true
eslint_args: "src/**/*.ts"

- name: Test
run: yarn test

0 comments on commit 42ee552

Please sign in to comment.