Skip to content
This repository has been archived by the owner on Apr 13, 2024. It is now read-only.

new things

new things #136

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm test --if-present