add rimraf in devDependencies #107
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2e test | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
neo4j_test: | |
name: Run all tests using Docker/Neo4j | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: Docker compose | |
run: docker compose up -d --build | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Build code | |
run: npm run build | |
- name: Run all the tests | |
run: npm test | |
- name: publish code coverage on CC | |
uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} |