Skip to main content
Module

x/sheetjs/.github/workflows/node-pretest.yml

πŸ“— SheetJS Community Edition -- Spreadsheet Data Toolkit
Extremely Popular
Go to Latest
File
name: 'Tests: pretest/posttest'
on: [pull_request, push]
jobs: pretest: runs-on: ubuntu-latest
steps: - uses: actions/checkout@v2 - uses: ljharb/actions/node/install@main name: 'nvm install lts/* && npm install' with: node-version: 'lts/*' - run: make init - run: 'cd test_files; make all; cd -' - run: npm run pretest
# posttest: # runs-on: ubuntu-latest
# steps: # - uses: actions/checkout@v2 # - uses: ljharb/actions/node/install@main # name: 'nvm install lts/* && npm install' # with: # node-version: 'lts/*' # - run: make init # - run: 'cd test_files; make all; cd -' # - run: npm run posttest