Merge pull request #716 from acacode/dependabot/npm_and_yarn/dotenv-1… #601
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: Builds, tests & co | |
on: | |
- push | |
- pull_request | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout tree | |
uses: actions/checkout@v4 | |
- name: Set-up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
check-latest: true | |
- name: Install npm packages | |
run: npm ci --ignore-scripts | |
- name: Run the tests | |
run: npm run test-all |