remote-jobs/.github/workflows/ci.yml
Doug Aitken 14d0afbe24
Update ci.yml
update to use main rather than versions 

[ref](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-using-a-public-action)

Signed-off-by: Doug Aitken <dougaitken@users.noreply.github.com>
2022-10-22 00:24:43 +01:00

23 lines
361 B
YAML

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Use Node.js
uses: actions/setup-node@main
- name: Install dependencies
run: npm install
- name: Run validation
run: npm run validate