Skip to content

Commit

Permalink
add github ci check
Browse files Browse the repository at this point in the history
  • Loading branch information
marudor committed May 10, 2021
1 parent 99fae28 commit a88f6fc
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: tests

on:
push:
branches:
- main
pull_request:
branches:
- main

env:
CI: 'true'

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 16
uses: actions/setup-node@master
with:
node-version: 16
- name: install
run: |
yarn
- name: test
run: |
yarn test

0 comments on commit a88f6fc

Please sign in to comment.