Bump semver from 6.3.0 to 6.3.1 #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For more information do to https://github.com/kontent-ai/kontent-ai.github.io/blob/main/docs/articles/JavaScript-Node.js-GitHub-Actions-Guidelines.md | |
name: "Build" # Represents the name of the whole action. | |
on: # Specifies the section where we describe our build triggers. | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: latest | |
- run: npm ci | |
- run: npm run build |