Dockerfile to enable building of images #91
Workflow file for this run
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
name: Check Versions Match | |
# On PR to main, check that package.json and package-lock.json share the version, and that CHANGELOG.md is spec-compliant. Block otherwise. | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 16.10.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.10.x | |
cache: "npm" | |
- name: Install Dependencies | |
run: npm ci | |
- name: Check versions Match | |
run: npm run release |