Skip to content

CI

CI #21

Workflow file for this run

name: CI
on:
release:
types: [published]
jobs:
check:
name: Check on Node ${{ matrix.node }} and ${{ matrix.os }}
run: echo "TEST ACTION"

Check failure on line 8 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 8, Col: 5): Unexpected value 'run'
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['18.x']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install deps
uses: bahmutov/npm-install@v1
- name: Lint
run: yarn lint
- name: Test
run: yarn test