Skip to content

Workflow file for this run

name: Continuous Integration
env:
GITHUB_TOKEN: ${{ github.token }}
on:
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
test-action:
name: GitHub Actions Test
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install Dependencies
id: npm-ci
run: npm ci
- name: Local Action
permissions: write-all

Check failure on line 34 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Continuous Integration

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 34, Col: 9): Unexpected value 'permissions'
id: test-action
uses: ./