Skip to content

Commit

Permalink
Implements CI
Browse files Browse the repository at this point in the history
  • Loading branch information
didley committed Jul 30, 2023
1 parent c6da1c0 commit 26a4576
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/pr.ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: On Push CI

on: push

jobs:
ci:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [lts/*, current]

steps:
- name: Checkout project
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: yarn install

- name: Run linter
run: yarn run lint

- name: Run build
run: yarn run build

- name: Run tests
run: yarn run test

0 comments on commit 26a4576

Please sign in to comment.