Skip to content

Commit

Permalink
add ci script
Browse files Browse the repository at this point in the history
  • Loading branch information
MeruzhanHarutyunyan committed Nov 24, 2021
1 parent d13638a commit db91206
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: main
on: [push, repository_dispatch]
jobs:
build-and-test:
runs-on: ubuntu-latest
name: Build and test
steps:
- uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

- uses: actions/checkout@v1

- uses: actions/setup-node@v2
with:
node-version: '16.4'

- run: npm install

- run: npm test

0 comments on commit db91206

Please sign in to comment.