Skip to content

chore: update multiple dependencies (#270) #1360

chore: update multiple dependencies (#270)

chore: update multiple dependencies (#270) #1360

Workflow file for this run

name: Docker
on: [push, 'pull_request']
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Install chakra-ui types
run: yarn run chakra-types
- name: Code format check
run: yarn format:check
- name: Linting
run: yarn lint
- name: Run Tests
run: yarn test:ci
- name: Publish coveralls report
uses: coverallsapp/github-action@master
with:
path-to-lcov: 'coverage/lcov.info'
github-token: ${{ secrets.GITHUB_TOKEN }}