feather/.github/workflows/ci.yml

18 lines
272 B
YAML
Raw Normal View History

2022-03-30 01:35:23 +03:00
name: CI
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2022-03-30 01:40:42 +03:00
- name: Use Node.js 16.x
2022-03-30 01:35:23 +03:00
uses: actions/setup-node@v3
with:
2022-03-30 01:40:42 +03:00
node-version: 16.x
2022-03-30 01:35:23 +03:00
cache: 'npm'
- run: npm ci
- run: npm run all