Skip to content

fjern console logs #3179

fjern console logs

fjern console logs #3179

name: Build and test
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: '20'
registry-url: 'https://npm.pkg.github.com'
cache: 'npm'
- name: Install dependencies
run: npm ci --ignore-scripts
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
- name: Run linting
run: npm run lint
- name: Build application
run: npm run build-local
- name: Run tests
run: npm run test