Skip to content

Instantly share code, notes, and snippets.

@harunonsystem
Created July 22, 2022 05:01
Show Gist options
  • Save harunonsystem/b1b6c44751a85c06aa08a6f19b6c48a2 to your computer and use it in GitHub Desktop.
Save harunonsystem/b1b6c44751a85c06aa08a6f19b6c48a2 to your computer and use it in GitHub Desktop.
name: CI
on: [push, pull_request]
jobs:
cd:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
steps:
- name: Checkout
uses: actions/checkout@master
- name: Setup node env
uses: actions/setup-node@v2.1.2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn
- name: Generate
run: yarn run generate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment