Merge pull request #608 from twz123/dependabot/npm_and_yarn/eslint-8.… #1926
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: | |
- push | |
- pull_request | |
- workflow_dispatch | |
jobs: | |
ci: | |
name: CI | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Set up Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install dependencies | |
run: npm ci | |
- name: Build | |
run: npm run all | |
- name: Compare the expected and actual dist/ directories | |
id: diff | |
run: git diff --exit-code -- dist/ | |
# If dist/ was different than expected, upload the expected version as an artifact | |
- name: Capture dist/ diff | |
uses: actions/upload-artifact@v4 | |
if: ${{ failure() && steps.diff.conclusion == 'failure' }} | |
with: | |
name: dist | |
path: dist/ | |
- name: Update rolling release tag | |
if: ${{ github.ref == 'refs/heads/main' }} | |
run: | | |
git push origin HEAD:refs/tags/v0.3 --force |