Skip to content

fix build

fix build #148

Workflow file for this run

name: Linter and build
on: [push]
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
jobs:
squid-type:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: NPM auth, install and build
run: |
npm set //registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN
yarn install --inmutable
yarn build
yarn lint