这是indexloc提供的服务,不要输入任何密码
Skip to content

docs(readme): Remove Greenkeeper and Travis badges (#357) #78

docs(readme): Remove Greenkeeper and Travis badges (#357)

docs(readme): Remove Greenkeeper and Travis badges (#357) #78

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22, 20, 18]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test