Skip to content

猬嗭笍 Bump @types/node from 18.14.4 to 20.10.0 #100

猬嗭笍 Bump @types/node from 18.14.4 to 20.10.0

猬嗭笍 Bump @types/node from 18.14.4 to 20.10.0 #100

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "lts/*"
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run tests
run: npm run test