chore(deps): bump cypress from 13.3.0 to 13.3.1 #71
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: Test & Lint | |
on: | |
pull_request: | |
jobs: | |
linters: | |
timeout-minutes: 10 | |
name: Linters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- run: git -c protocol.version=2 fetch --prune --progress --no-recurse-submodules --depth=200 origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* && git checkout --progress --force origin/$GITHUB_HEAD_REF | |
- name: Comparing with base branch | |
run: echo Linting changes since base branch \"$GITHUB_BASE_REF\" | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.14.0 | |
cache: 'npm' | |
- name: NPM Install | |
run: | | |
npm install | |
- name: Run Eslint | |
run: | | |
git diff-tree -r --no-commit-id --name-only --diff-filter=d origin/$GITHUB_BASE_REF HEAD -- '*.ts' '*.js' | xargs node_modules/.bin/eslint |