fix: add types in dmmfparser for encryption #194
Workflow file for this run
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: Continuous Integration | |
env: | |
FORCE_COLOR: 3 | |
on: | |
push: | |
branches: | |
- next | |
- feature/* | |
- dependabot/* | |
pull_request: | |
types: [opened, edited, reopened, synchronize] | |
jobs: | |
ci: | |
name: Continuous Integration | |
runs-on: ubuntu-latest | |
steps: | |
- id: yarn-cache | |
name: Get Yarn cache path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 | |
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 | |
with: | |
node-version: lts/* | |
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 | |
name: Load Yarn cache | |
with: | |
path: ${{ steps.yarn-cache.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- run: yarn install | |
name: Install dependencies | |
- name: Run integration tests | |
run: | | |
yarn build | |
yarn test:types | |
yarn test:unit | |
yarn test:integration | |
yarn test:coverage:merge | |
yarn test:coverage:report | |
- uses: coverallsapp/github-action@95b1a2355bd0e526ad2fd62da9fd386ad4c98474 | |
name: Report code coverage | |
continue-on-error: true | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: 47ng/actions-slack-notify@main | |
name: Notify on Slack | |
if: always() | |
continue-on-error: true | |
with: | |
status: ${{ job.status }} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |