Skip to content

build(deps-dev): bump eslint from 8.57.0 to 9.7.0 #3

build(deps-dev): bump eslint from 8.57.0 to 9.7.0

build(deps-dev): bump eslint from 8.57.0 to 9.7.0 #3

Workflow file for this run

# For more information see: https://docs.github.com/en/actions/
name: Project CI
on:
push:
branches: ['main']
paths: ['**.ts', '**.tsx', '**.vue', '.github/workflows/**', 'package.json', 'yarn.lock']
pull_request:
branches: ['main']
paths: ['**.ts', '**.tsx', '**.vue', '.github/workflows/**', 'package.json', 'yarn.lock']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20', 'latest']
name: Node ${{ matrix.node-version }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Build web components
run: yarn each build
- name: Tests
run: yarn each test:unit