Skip to content

merge: pull request #1 from MiRolls/ci-relaese-check #1

merge: pull request #1 from MiRolls/ci-relaese-check

merge: pull request #1 from MiRolls/ci-relaese-check #1

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x, 20.x ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build and ESLint
run: npm run build && npm run lint