Skip to content
This repository was archived by the owner on Aug 23, 2025. It is now read-only.

Bump sha.js from 2.4.11 to 2.4.12 #8

Bump sha.js from 2.4.11 to 2.4.12

Bump sha.js from 2.4.11 to 2.4.12 #8

Workflow file for this run

# This workflow will do a clean install of node dependencies, 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: Node CI for the frontend
on:
push:
branches: [ develop, master ]
paths: [ 'yarn.lock', 'frontend/**', '.github/workflows/frontend.js.yaml' ]
pull_request:
branches: [ develop, master ]
paths: [ 'yarn.lock', 'frontend/**', '.github/workflows/frontend.js.yaml' ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 14.x, 15.x ]
yarn-workspace: [ '@csh/deadass-frontend' ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ matrix.node-version }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn workspace ${{ matrix.yarn-workspace }} install --frozen-lockfile
- name: Lint
run: yarn workspace ${{ matrix.yarn-workspace }} lint
- name: Build
run: yarn workspace ${{ matrix.yarn-workspace }} build