chore(deps): update eslint packages to v6.11.0 #390
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Build | |
on: | |
push: | |
workflow_dispatch: | |
inputs: | |
upload_release_file: | |
type: boolean | |
default: false | |
description: Upload generated release file as an artifact. | |
env: | |
TEST_REPO: kattecon/gh-app-access-token-gen-test | |
jobs: | |
check: | |
name: Build, lint and test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup nodejs | |
uses: actions/[email protected] | |
with: | |
node-version: lts/* | |
- name: Build, lint and package if needed | |
run: | | |
if test -e Makefile; then | |
make build lint release-file | |
else | |
echo "Not building. It's supposed to be a release tag/branch then." | |
fi | |
- name: Generate token using app_id, pk and repo-name (1) | |
id: test_case_1_gen | |
uses: ./ | |
with: | |
app_id: ${{ secrets.TEST_APP_ID }} | |
private_key: ${{ secrets.TEST_APP_PK }} | |
repository: ${{ env.TEST_REPO }} | |
- name: Test access using token from (1) | |
env: | |
GH_TOKEN: ${{ steps.test_case_1_gen.outputs.token }} | |
run: gh repo view "$TEST_REPO" --json name | |
- name: Generate token using app id, pk and installation id (2) | |
id: test_case_2_gen | |
uses: ./ | |
with: | |
app_id: ${{ secrets.TEST_APP_ID }} | |
private_key: ${{ secrets.TEST_APP_PK }} | |
installation_id: ${{ secrets.TEST_APP_INST_ID }} | |
- name: Test access using token from (2) | |
env: | |
GH_TOKEN: ${{ steps.test_case_2_gen.outputs.token }} | |
run: gh repo view "$TEST_REPO" --json name | |
- name: Upload release artifact | |
if: "${{ github.event.inputs.upload_release_file == 'true' }}" | |
uses: actions/[email protected] | |
with: | |
name: release | |
path: release.tar.gz |