Skip to content

Feat: Added workflow #15

Feat: Added workflow

Feat: Added workflow #15

Workflow file for this run

name: "TestWorkflow"
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
run: cd packages/common

Check failure on line 19 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / TestWorkflow

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 19, Col: 9): 'run' is already defined
- name: Run tests
run: npm run test