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

fix: github actions to latest nodejs #2

fix: github actions to latest nodejs

fix: github actions to latest nodejs #2

Workflow file for this run

name: Build
on:
push:
branches: main
pull_request:
branches: main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build