Skip to content

Bump @actions/core from 1.10.0 to 1.10.1 #369

Bump @actions/core from 1.10.0 to 1.10.1

Bump @actions/core from 1.10.0 to 1.10.1 #369

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
permissions:
contents: read
jobs:
build-tsc:
runs-on: ubuntu-latest
timeout-minutes: 10
if: github.event.pull_request.draft == false
name: Build for node 16
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- run: npm ci
- run: npm run build
build-action:
runs-on: ubuntu-latest
timeout-minutes: 10
if: github.event.pull_request.draft == false
name: Release Build for node 16
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- run: npm ci
- run: npm run release