feat: insert new slot in snapshot, prevent execution touch trie; #184
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: Lint Commit Messages | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- state_expiry_mvp0.1_dev | |
pull_request: | |
branches: | |
- master | |
- develop | |
- state_expiry_mvp0.1_dev | |
jobs: | |
commitlint: | |
strategy: | |
matrix: | |
node-version: [14.x] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.npm | |
**/node_modules | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install Deps | |
run: | | |
npm install -g commitlint-plugin-function-rules @commitlint/cli | |
npm install --save-dev commitlint-plugin-function-rules @commitlint/cli | |
- uses: wagoid/commitlint-github-action@v5 | |
id: commitlint | |
env: | |
NODE_PATH: ${{ github.workspace }}/node_modules | |
with: | |
configFile: /github/workspace/.github/commitlint.config.js |