Skip to content

Commit

Permalink
add GH Actions basic CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aburkut committed Feb 6, 2023
1 parent 6b84384 commit 3da8b7f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI
on: push

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '16.x' ]
name: Node ${{ matrix.node }} sample
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}

- name: Install Dependencies
run: yarn

- name: Run Eslint checks
run: yarn check:es

0 comments on commit 3da8b7f

Please sign in to comment.