Skip to content

chore: Move .js to dist/ #14

chore: Move .js to dist/

chore: Move .js to dist/ #14

Workflow file for this run

name: test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install --prefer-offline
- run: npm run lint
- run: npm run build -- --noEmit
- run: npm run dependency-check
- run: npm run test