Skip to content

Bump the development-dependencies group with 2 updates #371

Bump the development-dependencies group with 2 updates

Bump the development-dependencies group with 2 updates #371

Workflow file for this run

name: Status Checks
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20]
name: Checks with Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
always-auth: true
node-version: ${{ matrix.node }}
registry-url: "https://npm.pkg.github.com"
scope: "@noahm"
cache: "yarn"
- name: Init project
run: yarn --frozen-lockfile
- name: Webpack Build
run: yarn build
- name: Unit Tests
run: yarn test
- name: eslint
run: yarn lint