chore(deps-dev): Bump @types/node from 22.0.2 to 22.5.2 (#158) #221
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: 'CI' | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
buildtest: | |
name: Build and Unit Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
node-version: 20.x | |
- name: Print Node.js and npm version | |
run: | | |
node --version | |
npm --version | |
- run: | | |
npm install | |
- run: | | |
npm run all | |
use: | |
name: Use | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
node-version: 20.x | |
- name: Print Node.js and npm version | |
run: | | |
node --version | |
npm --version | |
- uses: cerbos/cerbos-setup-action@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
version: 'latest' | |
- uses: ./ | |
checkdist: | |
name: Check dist/index.js | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
node-version: 20.x | |
- name: Install dependencies | |
run: npm ci --legacy-peer-deps | |
- name: Rebuild the dist/ directory | |
run: npm run build | |
- name: Compare the expected and actual dist/ directories | |
run: | | |
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then | |
echo "Detected uncommitted changes after build. See status below:" | |
git diff | |
exit 1 | |
fi | |
id: diff |