Skip to content

npm i

npm i #742

Workflow file for this run

name: build-any
on:
push:
branches:
- '**'
- '!master'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
name: build-any
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 18
# - name: Print GitHub
# run: echo $JSON
# env:
# JSON: ${{ toJson(github) }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build -- --configuration=production
#- name: Test
# run: npm run test -- --watch=false