Skip to content

ci: fixed some minor bugs related to the workflow #7

ci: fixed some minor bugs related to the workflow

ci: fixed some minor bugs related to the workflow #7

Workflow file for this run

name: CI_DEV
on:
workflow_dispatch:
push:
branches:
- dev
- dev-*
- staging
- staging-*
pull_request:
branches:
- dev
- dev-*
- staging
- staging-*
jobs:
lint-format-test:
runs-on: ubuntu-latest
environment: build
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20.11.0"
- name: Install dependencies
run: npm install
shell: bash
- name: Testing and linting
uses: ./.github/actions/tests
with:
silent_test: false
fix_lint: false