Use private GitHub Actions runners #216
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: Linting | |
on: [push] | |
jobs: | |
eslint: | |
runs-on: SalesforceFoundation-ubuntu | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v2-beta | |
with: | |
node-version: '14' | |
- name: Determine Node Version | |
id: node-version | |
run: | | |
echo "::set-output name=ver::$(node --version)" | |
- uses: actions/cache@v2 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-${{ steps.node-version.outputs.ver }}-${{ hashFiles('package.json', 'yarn.lock') }} | |
- name: Install Packages | |
run: | | |
yarn install | |
- name: eslint | |
run: | | |
npx eslint --max-warnings 0 "**/*.js" |