Skip to content

Update tests.yml

Update tests.yml #773

Workflow file for this run

name: Tests
on: [push]
jobs:
lint:
name: Unit testing
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libssl-dev gdebi-core
wget http://ftp.us.debian.org/debian/pool/main/o/openssl/libssl1.1_1.1.1n-0+deb11u4_amd64.deb
sudo gdebi --non-interactive libssl1.1_1.1.1n-0+deb11u4_amd64.deb
- uses: actions/checkout@v2
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- run: yarn install
- run: yarn test