Update Pixlet to 0.28.4 and Ubuntu to 20.04.6 #118
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
name: Test | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
tests: | |
name: Unit Tests | |
runs-on: ubuntu-22.04 | |
env: | |
PIXLET_BINARY: pixlet-github | |
PIXLET_BINARY_PATH: ./functions/axilla/pixlet/ | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Symlink libwebp.so.6 | |
run: sudo ln -s /lib/x86_64-linux-gnu/libwebp.so.7 /lib/x86_64-linux-gnu/libwebp.so.6 | |
- name: Install Dependencies | |
run: npm install | |
- name: Run Tests | |
run: npm run test:ci |