Skip to content

ci: update WELCOME-NEW-USERS workflow from global .github repo #54

ci: update WELCOME-NEW-USERS workflow from global .github repo

ci: update WELCOME-NEW-USERS workflow from global .github repo #54

Workflow file for this run

name: build-verify-package
on:
push:
paths-ignore:
#- '.github/**'
- '.gitignore'
- 'LICENSE'
- '*.md'
pull_request:
paths-ignore:
- '.github/**'
- '.gitignore'
- 'LICENSE'
- '*.md'
jobs:
build-verify-package:
runs-on: ubuntu-latest
environment: Build
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'yarn'
- name: Dependencies installation
run: yarn install
- name: Typescript compilation
run: yarn tsc
- name: Package build
run: yarn run build