For new stake #260
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit tests | |
on: | |
pull_request: | |
branches: [ main, prod ] | |
jobs: | |
audit: | |
name: Checking | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v2 | |
- name: Setup node and npm | |
uses: actions/setup-node@v3 | |
with: | |
cache: npm | |
scope: '@stakewise' | |
node-version: '20.12.2' | |
registry-url: "https://npm.pkg.github.com" | |
cache-dependency-path: "**/package-lock.json" | |
- name: Install npm dependencies | |
run: "npm ci --ignore-scripts" | |
shell: bash | |
env: | |
NODE_AUTH_TOKEN: ${{ github.token }} | |
- name: Checking | |
run: npm run prepare && npm run test | |
shell: bash |