Skip to content

Merge pull request #396 from github/proxima-fix #584

Merge pull request #396 from github/proxima-fix

Merge pull request #396 from github/proxima-fix #584

Workflow file for this run

name: Build
on:
push:
pull_request:
branches:
- main
permissions:
contents: read
packages: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16.x
cache: "npm"
registry-url: "https://npm.pkg.github.com"
- run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npm run format-check
- run: npm run lint
- run: npm run build
- run: npm run test