build(deps): bump github.com/hanwen/go-fuse/v2 from 2.4.0 to 2.4.2 #108
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
name: HTMLUI | |
on: | |
pull_request: | |
branches: [ master ] | |
push: | |
# ci-sandbox is a branch dedicated to testing post-submit code. | |
branches: [ master, artifacts-pr ] | |
tags: | |
- v* | |
env: | |
# environment variables shared between build steps | |
# do not include sensitive credentials and tokens here, instead pass them | |
# directly to tools that need them to limit the blast radius in case one of them | |
# becomes compromised and leaks credentials to external sites. | |
# required by Makefile | |
UNIX_SHELL_ON_WINDOWS: true | |
# set (to any value other than false) to trigger random unicode filenames testing (logs may be difficult to read) | |
ENABLE_UNICODE_FILENAMES: ${{ secrets.ENABLE_UNICODE_FILENAMES }} | |
# disable long filenames since they sometimes get messed up when simulating input keystrokes | |
ENABLE_LONG_FILENAMES: false | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
end-to-end-test: | |
name: E2E Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version-file: 'go.mod' | |
check-latest: true | |
id: go | |
- name: Run Tests | |
run: make htmlui-e2e-test | |
- name: Upload Screenshots | |
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 | |
with: | |
path: .screenshots/**/*.png | |
if-no-files-found: ignore | |
if: ${{ always() }} |