Skip to content

added swap

added swap #9

Workflow file for this run

name: 'Lint and build'
on:
push:
branches:
- '*'
jobs:
lintandbuild:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Node JS
uses: actions/setup-node@v4
with:
node-version: 20.11
- name: Install dependencies
run: yarn
- name: Prettier check
run: yarn prettier:check
- name: ESLint lint
run: yarn lint
- name: Build
run: yarn build