🟦 Bump typescript from 5.6.3 to 5.7.2 #352
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
# This CI Workflow was deployed and configured by WarpWing and Nate. | |
name: CI/CD (20.x) | |
on: | |
push: | |
paths: | |
- src/** | |
pull_request: | |
workflow_dispatch: | |
env: | |
NODE_VERSION: '20.x' | |
jobs: | |
es-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install node dependencies | |
run: npm i | |
- name: es-lint | |
run: npm run lint | |
tests: | |
runs-on: ubuntu-latest | |
environment: env | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install node dependencies | |
run: npm i | |
- name: Run Tests | |
env: | |
HYPIXEL_KEY: ${{ secrets.HYPIXEL_KEY }} | |
run: npm run tests | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install node dependencies | |
run: npm i | |
- name: Build | |
run: npm run build --if-present | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install node dependencies | |
run: npm i | |
- name: prettier | |
run: npm run prettier:check |