Name | About | Labels | Assignees |
---|---|---|---|
🐛 Bug | Report an issue to help improve the project. | 🛠 goal: fix |
docs
docs copied to clipboard
Bugs and Templates
A brief description of the question or issue, also include what you tried and what didn't work Please add screenshots if applicable Is there anything else we should know about this bug? |
name: Build on: push: paths: - public/** - src/** - cypress/** pull_request: paths: - public/** - src/** - cypress/**
jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: '16' - name: install dependencies run: npm ci - name: run linter run: npm run lint - name: run build run: npm run build
tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: '16' - name: install dependencies run: npm ci
-
- name: run tests run: npm run test:e2e
duplicated