diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b6f457c..1c7e0085 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -191,4 +191,16 @@ jobs: create_guide: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: '16' + - name: Cache node_modules + uses: actions/cache@v2 + env: + cache-name: cache-node-modules + with: + path: ~/.npm + key: ${{ runner.os }}-lint-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} + restore-keys: ${{ runner.os }}-lint-${{ env.cache-name }}- - run: npm run create:guide \ No newline at end of file diff --git a/.gitignore b/.gitignore index 822ec977..67ab7f5c 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,5 @@ src/**/*.js src/metadata\.json .idea .vscode -.DS_Store \ No newline at end of file +.DS_Store +CodeExamples.md \ No newline at end of file