Skip to content

build(deps): bump actions/setup-node from 3 to 4 (#354) #813

build(deps): bump actions/setup-node from 3 to 4 (#354)

build(deps): bump actions/setup-node from 3 to 4 (#354) #813

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@v3
- 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]