Skip to content

add yandex metrika and back button to results page #10

add yandex metrika and back button to results page

add yandex metrika and back button to results page #10

Workflow file for this run

name: πŸš€ Lint
on: push
jobs:
Deploy-Action:
name: πŸŽ‰ Lint
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Cache npm dependencies
uses: actions/cache@v3
id: cache-node-modules
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- name: πŸ”¨ Install Dependencies
if: steps.npm-cache.outputs.cache-hit != 'true'
run: |
npm ci
git reset --hard
- name: βœ”οΈ Lint and test project
run: |
npm run lint
npm run ts
npm run test