Delete zezeplugins/twig.js #218
This file contains hidden or 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: Generate package-lock.json | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| generate-lockfile: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '22' | |
| - name: Install dependencies and generate package-lock.json | |
| run: npm install | |
| - name: Commit package-lock.json | |
| run: | | |
| git config --local user.email "action@github.com" | |
| git config --local user.name "GitHub Action" | |
| git add package-lock.json | |
| git commit -m "Add package-lock.json" || echo "No changes to commit" | |
| git push |