chore(deps): update dependency @typescript-eslint/eslint-plugin to v8… #984
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: Test - Custom options file | |
on: | |
push: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
# Exclude in-repo PRs from running this job | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
with: | |
fetch-depth: 0 | |
- name: Generate options file | |
run: | | |
cat <<'OPTIONS_FILE' > packsquash_options.toml | |
pack_directory = 'test/empty_resource_pack' | |
output_file_path = 'pack.zip' | |
OPTIONS_FILE | |
- name: Run PackSquash | |
uses: ./ # Uses an action in the root directory | |
with: | |
packsquash_version: latest | |
options: packsquash_options.toml |