Skip to content

chore: update github actions #1

chore: update github actions

chore: update github actions #1

Workflow file for this run

name: NPM Installation
on:
push:
branches-ignore:
- "dependabot/**"
schedule:
- cron: '0 0 * * *'
env:
FORCE_COLOR: 2
NODE: 16
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
node: [18, 19, 20, 21]
runs-on: ${{ matrix.platform }}
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install npm dependencies
run: npm install
- name: Run build
run: npm run build