Actualizar identidad 2023 #160
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: Node.js CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Get NPM Version | |
id: get-npm-version | |
run: | | |
echo "::set-output name=npmversion::$(npm --version | tr -d '\n'; echo -n _; node --version)" | |
shell: bash | |
- name: Cache node_modules | |
uses: actions/cache@v2 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node_modules-${{ steps.get-npm-version.outputs.npmversion }}-${{ hashFiles('package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node_modules-${{ steps.get-npm-version.outputs.npmversion }}- | |
- run: npm ci --no-audit | |
- run: npm prune --no-audit | |
# - run: npm run buildweb # Falta arreglar AsyncStorage | |
- run: npm run test:unit | |
env: | |
CI: true | |
- run: npm run eslint |