PixivComics: change salt again #3738
Workflow file for this run
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
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
# https://help.github.com/en/articles/contexts-and-expression-syntax-for-github-actions | |
name: Continuous Integration | |
on: pull_request | |
jobs: | |
pr-integration: | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest, macOS-latest] | |
name: ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Starting X Virtual Frame Buffer (Port 99) | |
if: startsWith(matrix.os, 'ubuntu') | |
run: | | |
#sudo apt-get update | |
#sudo apt-get install -y libxkbfile-dev pkg-config libsecret-1-dev libxss1 dbus xvfb libgtk-3-0 libgconf-2-4 | |
sudo /usr/bin/Xvfb -ac :99 -screen 0 1920x1080x24 > /dev/null 2>&1 & | |
disown -ar # remove all running jobs (e.g. xvfb) from the job table of this bash process | |
- name: Checkout ${{ github.repository }} @ ${{ github.ref }} | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Install NodeJS | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20 | |
- name: Install NPM Packages | |
run: npm install | |
- name: Lint | |
run: npm run lint | |
- name: Build (web) | |
run: npm run build:web | |
- name: Test | |
env: | |
DISPLAY: ':99' | |
run: npm run test |