api key fields obfuscation #39
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
# .github/workflows/release.yml | |
name: Test app | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Github checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Remove package-lock.json | |
uses: JesseTG/rm@v1.0.3 | |
with: | |
path: ./package-lock.json | |
- name: Install Dependencies | |
run: npm i | |
- name: Run tests | |
run: npm test |