This repository has been archived by the owner on Oct 27, 2024. It is now read-only.
Adding Framework/Skip-Framework functionality #162
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: PR Test | |
on: pull_request | |
jobs: | |
lint: | |
runs-on: [self-hosted, public, linux, x64] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
- name: Install Dependencies | |
run: npm ci | |
- name: Run Compile | |
run: npm run compile | |
- name: Run Linter | |
run: npm run lint |