Skip to content

MD-23 fix: manually use version #91

MD-23 fix: manually use version

MD-23 fix: manually use version #91

Workflow file for this run

name: Lint/Test/Build
env:
NODE_VERSION: 20
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: Lint/Test/Build
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${NODE_VERSION}
cache: 'npm'
- name: NPM Install
run: npm install
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run prod
- name: ES Check
run: npm run es-check