Skip to content

chore(test): 新增 node 16, 18 版本 #93

chore(test): 新增 node 16, 18 版本

chore(test): 新增 node 16, 18 版本 #93

Workflow file for this run

name: Notify
on:
push:
branches:
- master
jobs:
notify:
if: ${{ startsWith(github.event.head_commit.message, 'chore(release):') }}
name: Notify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: master
- uses: actions/cache@v2
id: cache
with:
path: node_modules
key: ${{ hashFiles('yarn.lock') }}
- if: ${{ steps.cache.outputs.cache-hit != 'true' }}
run: npx yarn
- run: npx notify-dingtalk
env:
D_ACCESS_TOKEN: ${{ secrets.D_ACCESS_TOKEN }}
D_SECRET: ${{ secrets.D_SECRET }}