Skip to content

fixed bug in workflow #3

fixed bug in workflow

fixed bug in workflow #3

Workflow file for this run

# .github/workflows/ci.yml
name: CI
on:
push:
branches:
- 'main'
- 'development'
- 'feature**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Dependencies
run: npm install
- name: Run Tests and Linting
run: |
npm test
npm run lint