紹介記事・関連記事を追加 #407
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: Secretlint | |
on: push | |
env: | |
CI: true | |
jobs: | |
test: | |
name: "Secretlint" | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
node-version: [12] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: setup Node ${{ matrix.node_version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node_version }} | |
- name: Install | |
run: npm install | |
- name: Lint with Secretlint | |
run: npx secretlint "**/*" |