Skip to content

fix(ci): remove not existing script #66

fix(ci): remove not existing script

fix(ci): remove not existing script #66

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: '20.9.0'
cache: 'npm'
- name: 📦 Install dependencies
run: npm ci
- name: 👷 Build project
run: npm run build