update from www to old #519
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
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Unit tests | |
on: | |
push: | |
branches: ['dev'] | |
pull_request: | |
branches: ['dev'] | |
jobs: | |
codeql: | |
uses: ./.github/workflows/codeql.yml | |
security_scanning: | |
needs: codeql | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Run Snyk to check for vulnerabilities | |
uses: snyk/actions/node@master | |
continue-on-error: true | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
npm_build_tests: | |
needs: security_scanning | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
[14.x] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: 'false' | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: Install winterfell | |
run: npm install '${{ secrets.WINTERFELL_REPO }}' | |
- name: Clean install, npm ci and Unit testing | |
env: | |
SKIP_PREFLIGHT_CHECK: true | |
run: | | |
npm ci | |
CI=false npm run build --if-present | |
echo "Runnning Unit Tests" | |
npm run test:ci |