Bump tough-cookie from 4.0.0 to 4.1.3 (#7) #14
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: TypeScript Checker Declaration | |
# This action works with pull requests and pushes | |
on: [push, pull_request] | |
jobs: | |
typing: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
security-events: write | |
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- uses: pnpm/action-setup@v2.0.1 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 7.25.1 | |
run_install: false | |
- name: Install depends and run `auto-export` | |
run: | | |
pnpm i | |
- name: Typing | |
run: pnpm typing |