Skip to content

Bump @babel/preset-env from 7.16.11 to 7.23.2 #230

Bump @babel/preset-env from 7.16.11 to 7.23.2

Bump @babel/preset-env from 7.16.11 to 7.23.2 #230

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
paths-ignore:
- "**.md"
pull_request:
branches:
- main
paths-ignore:
- "**.md"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
needs: []
runs-on: ubuntu-latest
steps:
- name: "Set up GitHub Actions"
uses: actions/checkout@v3
- name: "Set up Node"
uses: actions/setup-node@v3
with:
node-version: 18
- name: "Install Prettier"
run: npm install --global [email protected]
- name: "Check format"
run: make check
test:
needs: [lint]
runs-on: ubuntu-latest
steps:
- name: "Set up GitHub Actions"
uses: actions/checkout@v3
- name: "Set up Node"
uses: actions/setup-node@v3
with:
node-version: 18
- name: "Install dependencies"
run: npm install-clean
- name: "Run tests"
run: make test
build:
needs: [test]
runs-on: ubuntu-latest
steps:
- name: "Set up GitHub Actions"
uses: actions/checkout@v3
- name: "Build Docker image"
run: make docker-build