Skip to content

Upgrading gitub CI deprecated actions to fix build #7

Upgrading gitub CI deprecated actions to fix build

Upgrading gitub CI deprecated actions to fix build #7

Workflow file for this run

name: CD
on:
push:
branches:
- master
jobs:
main:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 14
cache: "yarn"
- name: Cache dependencies
id: cache
uses: actions/cache@v4
with:
path: ./node_modules
key: modules-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install
- run: yarn test