Skip to content

Merging changes from dev to staging #225

Merging changes from dev to staging

Merging changes from dev to staging #225

Workflow file for this run

name: Continuous Integration
on:
pull_request:
types:
- opened
branches:
- dev
- staging
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Node LTS versions
uses: msimerson/[email protected]
- run: npm install --force
- name: Testing code coverage
run: npm test --ci --coverage
- name: Coverage
run: npm run test:cov
coverage:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@v1
- uses: artiomtr/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
#threshold: 70