Skip to content

Commit

Permalink
add testing action
Browse files Browse the repository at this point in the history
  • Loading branch information
konstantin-lukas committed Jul 7, 2024
1 parent f32ec82 commit b14fb3c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on: ["push"]

name: Test Coveralls

jobs:

build:
name: Build
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v1

- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x

- name: npm install, npm run test
run: |
npm install
npm run test
- name: Coveralls GitHub Action
uses: coverallsapp/[email protected]

0 comments on commit b14fb3c

Please sign in to comment.