Skip to content

Merge pull request #9 from marc3gomes/feature #5

Merge pull request #9 from marc3gomes/feature

Merge pull request #9 from marc3gomes/feature #5

name: Continuos Integration Develop

Check failure on line 1 in .github/workflows/workflow_develop.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/workflow_develop.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: ci
on:
pull_request:
branches:
['develop', 'master']
jobs:
ci:
runs-on: ubuntu-latest
setps:
- uses: actions/checkout@v3
- name: Using node.js
uses: actions/setup-node@v2
with:
node-version: 20.x
- name: Rename .env.example to .env
run: mv .env.example .env
- name: run install, build and test
run: |
npm run install
npm run build
npm run test