Skip to content

Bump the npm_and_yarn group across 2 directories with 4 updates #202

Bump the npm_and_yarn group across 2 directories with 4 updates

Bump the npm_and_yarn group across 2 directories with 4 updates #202

name: CI
on:
push:
branches:
- develop
- main
pull_request:
workflow_dispatch:
jobs:
build:
name: build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout commit
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install build dependencies
run: yarn install --frozen-lockfile
- name: Run linting
run: yarn run lint
- name: Run tests
run: yarn run test
- name: Run TypeScript compile
run: yarn run compile