Skip to content

chore(deps-dev): bump @typescript-eslint/parser from 7.6.0 to 7.7.0 #230

chore(deps-dev): bump @typescript-eslint/parser from 7.6.0 to 7.7.0

chore(deps-dev): bump @typescript-eslint/parser from 7.6.0 to 7.7.0 #230

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
concurrency:
group: test-${{github.ref}}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
with:
persist-credentials: false
- name: Cache 📦
uses: actions/cache@v1
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Setup Node Environment ⬢
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install 🔧
run: npm install
- name: Build 🛠
run: npm run build
- name: Test/Coverage 🧪
run: npm run coverage