Skip to content

Merge pull request #273 from Lattice-Automation/crossing-zero-cut-sites #538

Merge pull request #273 from Lattice-Automation/crossing-zero-cut-sites

Merge pull request #273 from Lattice-Automation/crossing-zero-cut-sites #538

Workflow file for this run

name: main
on:
push:
pull_request:
branches: [develop]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
env:
# I do not understand which package makes this required. Or if this is required for everyone.
# Getting 405s without it.
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm run build
- run: npm run lint
- run: npm run test