Add CI workflow for Node.js

This commit is contained in:
abersheeran 2023-12-18 16:26:52 +08:00
parent bdef65eafd
commit 7c715682f7

15
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20.x"
- run: npm install