Skip to content

build(deps): bump google-github-actions/release-please-action #189

build(deps): bump google-github-actions/release-please-action

build(deps): bump google-github-actions/release-please-action #189

Workflow file for this run

name: Run tests
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '18' ]
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Cache Node modules
id: cache
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
- if: ${{ steps.cache.outputs.cache-hit == 'false' }}
name: List the state of node modules
continue-on-error: true
run: npm list
- name: Install dependencies
run: npm install
env:
ci: true
- name: Build & Test
run: npm test