Skip to content

feat: use local.properties file for signing configs #78

feat: use local.properties file for signing configs

feat: use local.properties file for signing configs #78

Workflow file for this run

name: Tests
on: [push]
jobs:
jest-tests:
strategy:
matrix:
node-version: ["18.x", "20.x"]
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: Run Tests
run: npm run test:ci