Skip to content

Setup Dependabot and update actions #170

Setup Dependabot and update actions

Setup Dependabot and update actions #170

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
general:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Test
run: npm test