Skip to content

chore(deps): Bump actions/cache from 3.3.1 to 3.3.2 #179

chore(deps): Bump actions/cache from 3.3.1 to 3.3.2

chore(deps): Bump actions/cache from 3.3.1 to 3.3.2 #179

Workflow file for this run

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: 16.x
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
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 }}