docs(deprecation): add notice for the deprecation #44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "License checker" | |
on: [pull_request] | |
permissions: | |
contents: write | |
jobs: | |
license-checker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: Install | |
run: npm install --no-optional | |
- name: Check Licenses | |
run: npm run license-check |