style: Lint and style code #27
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
# For more information on running Github CI with Node: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | |
name: Test | |
on: | |
pull_request: | |
branches: | |
- main | |
# cancel any ongoing job in the branch if there is one more recent | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
install-build-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [lts/*] | |
steps: | |
- run: echo "Job was automatically triggered by a ${{ github.event_name }} event on ${{ github.ref }} - ${{ github.repository }}." | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Check versions | |
run: echo "Node version:" && node -v && echo "NPM version:" && npm -v | |
- name: Install dependencies | |
run: npm install | |
- run: npm run lint | |
- name: Build | |
run: npm run compile | |
- name: LDWorkbench init & test run | |
run: rm -rf ./pipelines && npx ld-workbench --init && npx ld-workbench -c "src/utils/tests/static/single/conf.yml" | |
- name: Test | |
run: npm run test | |
- run: echo "Job status ${{ job.status }}." |