Skip to content

nielk is running GitHub Actions 🚀 #19

nielk is running GitHub Actions 🚀

nielk is running GitHub Actions 🚀 #19

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:
build_and_test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install NPM dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn run lint
- name: Test
run: yarn run test
- name: Build
run: yarn run build