Skip to content

Merge pull request #53 from elaichenkov/dependabot/npm_and_yarn/cypre… #109

Merge pull request #53 from elaichenkov/dependabot/npm_and_yarn/cypre…

Merge pull request #53 from elaichenkov/dependabot/npm_and_yarn/cypre… #109

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Run eslint & prettier
run: npm run lint && npm run format:check
- name: Run tests
run: npm test