Skip to content

Update actions/checkout digest to 9bb5618 - autoclosed #12

Update actions/checkout digest to 9bb5618 - autoclosed

Update actions/checkout digest to 9bb5618 - autoclosed #12

Workflow file for this run

name: ci
on:
push:
paths-ignore:
- 'docs/**'
- '*.md'
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: ikalnytskyi/action-setup-postgres@v4
- name: Install
run: |
npm install
- name: Run tests
run: |
npm run test