Skip to content

[V2] Full Allure Support #57

[V2] Full Allure Support

[V2] Full Allure Support #57

Workflow file for this run

name: CI
on:
push:
branches: [master]
paths-ignore:
- '**/*.md'
pull_request:
branches: [master]
paths-ignore:
- '**/*.md'
jobs:
self_check:
name: Self Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- uses: bahmutov/npm-install@v1
with:
useLockFile: false
- name: Lint
run: npm run lint:ci
- name: Unit Tests
run: npm test
- name: Build
run: npm run build