Skip to content

build(deps): bump codecov/codecov-action from 4.0.0 to 4.1.0 #858

build(deps): bump codecov/codecov-action from 4.0.0 to 4.1.0

build(deps): bump codecov/codecov-action from 4.0.0 to 4.1.0 #858

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['18.x']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies and build (with cache)
uses: bahmutov/npm-install@v1
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Test
run: yarn test:ci
- name: Build
run: yarn build
- name: CodeCov
uses: codecov/[email protected]