Skip to content

Bump the minor-and-patch group across 1 directory with 4 updates #1866

Bump the minor-and-patch group across 1 directory with 4 updates

Bump the minor-and-patch group across 1 directory with 4 updates #1866

name: Lint & tests
on:
push:
branches-ignore:
- main
env:
CI: true
TZ: Europe/Amsterdam
jobs:
lint-and-test:
name: Lint & run tests
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9.2.0
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'pnpm'
registry-url: 'https://npm.pkg.github.com'
- name: Install dependencies
run: pnpm install --frozen-lockfile
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
- name: Lint
run: pnpm lint
- name: Run tests
run: pnpm test