build(deps-dev): bump @types/node from 18.16.3 to 20.14.10 #165
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: Database Lint 2 | |
on: | |
pull_request: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- id: nodeversion | |
run: echo "NODE=$(cat .nvmrc)" >> $GITHUB_OUTPUT | |
- name: restore Cache | |
uses: actions/cache@master | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
- name: Use Node.js ${{steps.nodeversion.outputs.NODE}} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ steps.nodeversion.outputs.NODE }} | |
- name: install | |
run: | | |
yarn | |
- name: lint | |
run: | | |
yarn lint | |
- name: create-json secret | |
uses: jsdaniell/[email protected] | |
with: | |
name: "key.json" | |
json: ${{ secrets.GDOC_KEY }} | |
- name: Test generation | |
run: | | |
node src/generate.js test |