Skip to content

Merge pull request #11 from yashthipsay/main #1

Merge pull request #11 from yashthipsay/main

Merge pull request #11 from yashthipsay/main #1

Workflow file for this run

name: "Code Coverage on commit"
on:
push:
branches:
- main

Check failure on line 6 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 6
jobs:
tests:
name: "TestsOnCommits"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Node.js
uses: actions.setup-node@v3
with:
node-version: "16"
- name: Install dependencies
working-directory: ./chain
shell: bash
run: npm install
- name: Run tests
working-directory: ./chain
shell: bash
run: npm run test