Revert "feat: align with the upstream and update the package JSON (#4)" #14
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: "Test" | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
push: | |
branches: | |
- "main" | |
# Only allow one workflow run at a time per PR | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
test: | |
name: "Test" | |
runs-on: ["ubuntu-latest"] | |
env: | |
TZ: "Europe/Rome" | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: "Set up Node.js" | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "22.x" | |
cache: "npm" | |
- name: "Test the package" | |
run: npm cit --quiet | |
timeout-minutes: 5 |