Skip to content

Bump the npm_and_yarn group across 1 directory with 2 updates #35

Bump the npm_and_yarn group across 1 directory with 2 updates

Bump the npm_and_yarn group across 1 directory with 2 updates #35

Workflow file for this run

name: check
on:
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Run lint
run: yarn lint
- name: Build
run: yarn build