Skip to content

Bump the minor-and-patch group with 8 updates #63

Bump the minor-and-patch group with 8 updates

Bump the minor-and-patch group with 8 updates #63

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: [ "master" ]
jobs:
build-test:
runs-on: ubuntu-latest
name: Build & test
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: Run lint
run: yarn lint
- name: Run tests
run: yarn test