Skip to content

xd

xd #1286

Workflow file for this run

name: Test code
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Installing APT dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev libtool qrencode gifsicle
- name: Installing project dependencies
run: npm i --legacy-peer-deps && npm i
- name: Executing CI test script
run: npm test