Urara-Blog/node_modules/.pnpm-store/v3/files/16/0e9edf6473b32be41f4c78dcc6ed5a00f71243ae93025fc6f26538be75e9484f404f66cf1622311a6715ce61c6316779e2d4274b780f4e5e4faf6aadce82e2
2022-08-14 01:14:53 +08:00

28 lines
582 B
Text

name: build
on:
push:
branches: [master]
pull_request:
branches: ["*"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}