Skip to content

nielk is running GitHub Actions 🚀 #8

nielk is running GitHub Actions 🚀

nielk is running GitHub Actions 🚀 #8

Workflow file for this run

name: Run CI
run-name: ${{ github.actor }} is running GitHub Actions 🚀
on:
push:
branches:
- 'main'
pull_request:
workflow_dispatch:
jobs:
main-ci:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install node dependencies
uses: ./
with:
working-directory: ./
install-command: yarn install --frozen-lockfile
- name: Lint
uses: ./
with:
working-directory: ./
install-command: yarn lint
- name: Test
uses: ./
with:
working-directory: ./
install-command: yarn test
- name: Build
uses: ./
with:
working-directory: ./
install-command: yarn build