Skip to content

Fix comMojang projects with greet screen #583

Fix comMojang projects with greet screen

Fix comMojang projects with greet screen #583

Workflow file for this run

name: Check TypeScript
on:
push:
branches:
- dev
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
with:
persist-credentials: false
- name: Install Node 🧰
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Cache node modules 📖
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install and Build 🔧
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm install
npm run check