Test github action - (DO NOT COMMIT) #16
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: gha-test | |
on: | |
workflow_call: | |
pull_request: | |
types: [edited, opened, reopened, synchronize] | |
jobs: | |
do_the_thing: | |
runs-on: windows-latest | |
name: Test the new actions | |
env: | |
NODE_OPTIONS: "--max_old_space_size=4096" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' # Always use Node LTS for building dependencies. | |
- run: yarn | |
- uses: rmohan20/code-analyzer-action@main | |
with: | |
render-results: false | |
runtype: simple | |
engine: eslint-typescript | |
target: "./src/**/*.ts" |