Skip to content

Merge branch 'main' of https://github.com/vitalygashkov/dasha #165

Merge branch 'main' of https://github.com/vitalygashkov/dasha

Merge branch 'main' of https://github.com/vitalygashkov/dasha #165

Workflow file for this run

name: ci
on:
push:
paths-ignore:
- 'docs/**'
- '*.md'
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install
run: |
npm install
- name: Lint
run: |
npm run lint
- name: Run tests
run: |
npm run test