Skip to content

Bump the development-dependencies group with 3 updates #2

Bump the development-dependencies group with 3 updates

Bump the development-dependencies group with 3 updates #2

Workflow file for this run

# SPDX-FileCopyrightText: 2024 Gnuxie <Gnuxie@protonmail.com>
#
# SPDX-License-Identifier: CC0-1.0
name: Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Specifically use node LTS.
uses: actions/setup-node@v4
with:
node-version: "18"
- run: yarn install
- run: yarn build
- run: yarn lint
unit:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Specifically use node LTS.
uses: actions/setup-node@v4
with:
node-version: "18"
- run: yarn install
- run: yarn build
- run: yarn test