Skip to content

Merge pull request #83 from rsksmart/dependabot/github_actions/github… #202

Merge pull request #83 from rsksmart/dependabot/github_actions/github…

Merge pull request #83 from rsksmart/dependabot/github_actions/github… #202

Workflow file for this run

name: CI/CD Using Github actions workflow
on: [push, pull_request]
# Declare default permissions as read only.
permissions: read-all
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: Node & Npm Version
run: |
node -v
npm -v
- name: Install 🔧
run: npm ci
- name: Test 🚨
run: npm test