Skip to content

feat: update dependencies and configurations #695

feat: update dependencies and configurations

feat: update dependencies and configurations #695

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- develop
- feature/*
- release/*
- hotfix/*
- renovate/*
pull_request:
branches:
- main
jobs:
integration:
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: [18.x, 20.x]
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Set up Node.js version ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install dependencies using CI
run: yarn --immutable
- name: Run tests on package
run: yarn test
- name: Update coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build package
run: yarn build