fix(deps): update dependency @stablelib/ed25519 to v2 #289
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
on: push | |
name: CI Checks | |
jobs: | |
ci: | |
name: CI | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false # don't abort all jobs in matrix if one fails | |
matrix: | |
test-prefix: | |
- misc/logger | |
- misc/encoding | |
- misc/keyvaluestorage | |
- misc/time | |
- misc/heartbeat | |
- misc/environment | |
- misc/cacao | |
- misc/identity-keys | |
- misc/events | |
- misc/did-jwt | |
- misc/safe-json | |
- crypto/ecies-25519 | |
- crypto/crypto | |
- crypto/randombytes | |
- jsonrpc/types | |
- jsonrpc/provider | |
- jsonrpc/utils | |
- jsonrpc/http-connection | |
- jsonrpc/ws-connection | |
- browser/window-getters | |
- browser/window-metadata | |
- relay/relay-api | |
- relay/relay-auth | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
- name: Check node_modules cache | |
id: cache-node-modules | |
uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
*/*/node_modules | |
key: ${{ runner.os }}-nodemodules-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-nodemodules- | |
- name: Install NPM Dependencies | |
run: npm ci | |
- name: Prettier | |
run: npm run prettier -- --filter=./${{ matrix.test-prefix }} | |
- name: Lint | |
run: npm run lint -- --filter=./${{ matrix.test-prefix }} | |
- name: Build | |
run: npm run build -- --filter=./${{ matrix.test-prefix }} | |
- name: Test | |
run: npm run test -- --filter=./${{ matrix.test-prefix }} | |
env: | |
TEST_PROJECT_ID: ${{ secrets.TEST_PROJECT_ID }} |