Skip to content

Bump nanoid from 3.3.7 to 3.3.8 in /subgraphs/saucerswap/v2 (#168) #273

Bump nanoid from 3.3.7 to 3.3.8 in /subgraphs/saucerswap/v2 (#168)

Bump nanoid from 3.3.7 to 3.3.8 in /subgraphs/saucerswap/v2 (#168) #273

Workflow file for this run

name: Auth Layer Proxy Tests
on:
pull_request:
branches: [ main, release/**]
push:
branches: [ main, release/*]
tags: [ v*, v*.*.* ]
defaults:
run:
shell: bash
permissions:
contents: read
jobs:
proxy-tests:
name: Proxy Tests
runs-on: smart-contracts-linux-medium
steps:
- name: Harden Runner
uses: step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Lua Install
run: |
sudo apt-get update
sudo apt-get install build-essential libreadline-dev lua5.3 liblua5.3-dev -y
- name: Luarocks Install
run: |
sudo apt-get update && sudo apt-get install wget -y
wget https://luarocks.org/releases/luarocks-3.8.0.tar.gz
tar xzfp luarocks-3.8.0.tar.gz; cd luarocks-3.8.0
./configure && make && sudo make install
- name: Install lunatest
run: sudo luarocks install lunatest
- name: Install luacov
run: sudo luarocks install luacov
- name: Install luacov-console
run: sudo luarocks install luacov-console
- name: Install cjson
run: sudo luarocks install lua-cjson
- name: Install luasocket
run: sudo luarocks install luasocket
- name: Run tests
run: lua test.lua
working-directory: auth-layer-proxy/tests
- name: Generate coverage report
run: luacov
working-directory: auth-layer-proxy/tests
- name: Generate Console Report
run: luacov-console ../filters/ && luacov-console ../filters/ -s && luacov-console ../filters/ -s > coverage.txt
working-directory: auth-layer-proxy/tests