Skip to content

Commit

Permalink
CI for dependencies checking
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank-Gu-81 committed Jan 13, 2025
1 parent 6f927bf commit 3109d89
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: dependency-check

on:
push:
branches: master
pull_request:
branches: master

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [22.x]

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm install

- name: Build
run: npm run build

0 comments on commit 3109d89

Please sign in to comment.