chore(GoPlay): update assets #4712
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: Compile and Lint | |
on: [pull_request] | |
jobs: | |
compileLint: | |
name: Compile and Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js 16 | |
uses: actions/[email protected] | |
with: | |
node-version: 16 | |
cache: npm | |
- name: Install dependencies | |
run: HUSKY=0 npm ci | |
- name: Compile changed files | |
run: npm run compile ${{ github.event_name }} $GITHUB_BASE_REF | |
- name: Check Lint | |
run: npm run lint:ci |