chore(deps): update typescript-eslint monorepo to v7 (#171) #276
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: Memory Leak Detect | |
on: | |
push: | |
branches: | |
- main | |
tags-ignore: | |
- '**' | |
pull_request: | |
jobs: | |
Test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install | |
uses: dtolnay/rust-toolchain@stable | |
- name: Cache NPM dependencies | |
uses: actions/cache@v4 | |
with: | |
path: node_modules | |
key: npm-cache-lint-node@16-${{ hashFiles('yarn.lock') }} | |
- name: 'Install dependencies' | |
run: yarn install --frozen-lockfile --registry https://registry.npmjs.org --network-timeout 300000 | |
- name: 'Build binary' | |
run: yarn build | |
- name: 'Memory test' | |
run: yarn test:mem |