Skip to content

Merge pull request #2 from karanikiotis/main #1

Merge pull request #2 from karanikiotis/main

Merge pull request #2 from karanikiotis/main #1

Workflow file for this run

name: cicd
on: push
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Setup nodejs
uses: actions/setup-node@v2
with:
node-version: 16
- name: Download dependencies
run: npm install
- name: Run tests
run: npm run test