Skip to content

Update package.json

Update package.json #9

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --pure-lockfile
- run: ./node_modules/.bin/madge -c .
- run: yarn audit
- run: yarn build
- run: yarn lint
- run: yarn test