Skip to content

53abe25eca913e5cec3a8bf8615792982888f7a6/2054/831692/402500/05/000030e9 #61

53abe25eca913e5cec3a8bf8615792982888f7a6/2054/831692/402500/05/000030e9

53abe25eca913e5cec3a8bf8615792982888f7a6/2054/831692/402500/05/000030e9 #61

Workflow file for this run

name: ubuntu-node
# Controls when the action will run.
on:
pull_request:
branches:
- '*'
- '*/*'
- '**'
- 'master'
- 'main'
push:
branches:
- '*'
- '*/*'
- '**'
- 'master'
- 'main'
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
ubuntu-build_and_test:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: styfle/cancel-workflow-action@0.11.0
if: ${{ !env.ACT }}
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v3
fetch-depth: 0

Check failure on line 35 in .github/workflows/ubuntu-node.yml

View workflow run for this annotation

GitHub Actions / ubuntu-node

Invalid workflow file

The workflow is not valid. .github/workflows/ubuntu-node.yml (Line: 35, Col: 9): Unexpected value 'fetch-depth'
- name: Restore deps
id: cache-deps-restore
uses: actions/cache/restore@v3
#if: ${{ !env.ACT }}
with:
path: |
deps/git
key: ${{ runner.os }}-deps
- name: printenv
run: |
printenv && sudo apt-get update && \
apt-get install -y python3 python3-pip make nodejs npm
make init #npm-install
touch ~/GH_ACT_TOKEN.txt
- name: Save deps
id: cache-deps-save
uses: actions/cache/save@v3
#if: ${{ !env.ACT }}
with:
path: |
deps/git
key: ${{ steps.cache-deps-restore.outputs.cache-primary-key }}