This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
Bump tough-cookie and @cypress/request #1298
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: TypeScript Lint Check | |
on: | |
pull_request: | |
types: [assigned, opened, synchronize, reopened] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: TypeScript Lint GitHub Action | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16.13 | |
- name: Install dependencies | |
run: npm install | |
- name: Lint | |
run: npm run lint |